Merge branch 'master' into develop
This commit is contained in:
commit
10cd60ef1d
|
@ -0,0 +1 @@
|
||||||
|
Ensure password input doesn't overflow outside of container (#933)
|
|
@ -0,0 +1 @@
|
||||||
|
Fixed escaped pod name displayed on home/about page (#945)
|
|
@ -0,0 +1 @@
|
||||||
|
Added feedback via loading spinner when searching a remote library
|
|
@ -3,10 +3,12 @@
|
||||||
<section :class="['ui', 'head', {'with-background': banner}, 'vertical', 'center', 'aligned', 'stripe', 'segment']" :style="headerStyle">
|
<section :class="['ui', 'head', {'with-background': banner}, 'vertical', 'center', 'aligned', 'stripe', 'segment']" :style="headerStyle">
|
||||||
<div class="segment-content">
|
<div class="segment-content">
|
||||||
<h1 class="ui center aligned large header">
|
<h1 class="ui center aligned large header">
|
||||||
<translate translate-context="Content/Home/Header"
|
<span
|
||||||
|
v-translate="{podName: podName}"
|
||||||
|
translate-context="Content/Home/Header"
|
||||||
:translate-params="{podName: podName}">
|
:translate-params="{podName: podName}">
|
||||||
About %{ podName }
|
About %{ podName }!
|
||||||
</translate>
|
</span>
|
||||||
<div v-if="shortDescription" class="sub header">
|
<div v-if="shortDescription" class="sub header">
|
||||||
{{ shortDescription }}
|
{{ shortDescription }}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -3,10 +3,12 @@
|
||||||
<section :class="['ui', 'head', {'with-background': banner}, 'vertical', 'center', 'aligned', 'stripe', 'segment']" :style="headerStyle">
|
<section :class="['ui', 'head', {'with-background': banner}, 'vertical', 'center', 'aligned', 'stripe', 'segment']" :style="headerStyle">
|
||||||
<div class="segment-content">
|
<div class="segment-content">
|
||||||
<h1 class="ui center aligned large header">
|
<h1 class="ui center aligned large header">
|
||||||
<translate translate-context="Content/Home/Header"
|
<span
|
||||||
|
v-translate="{podName: podName}"
|
||||||
|
translate-context="Content/Home/Header"
|
||||||
:translate-params="{podName: podName}">
|
:translate-params="{podName: podName}">
|
||||||
Welcome to %{ podName }!
|
Welcome to %{ podName }!
|
||||||
</translate>
|
</span>
|
||||||
<div v-if="shortDescription" class="sub header">
|
<div v-if="shortDescription" class="sub header">
|
||||||
{{ shortDescription }}
|
{{ shortDescription }}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="ui action input">
|
<div class="ui fluid action input">
|
||||||
<input
|
<input
|
||||||
required
|
required
|
||||||
name="password"
|
name="password"
|
||||||
|
|
|
@ -142,7 +142,7 @@ export default {
|
||||||
library: {type: Object, required: true},
|
library: {type: Object, required: true},
|
||||||
displayFollow: {type: Boolean, default: true},
|
displayFollow: {type: Boolean, default: true},
|
||||||
displayScan: {type: Boolean, default: true},
|
displayScan: {type: Boolean, default: true},
|
||||||
displayCopyFid: {type: Boolean, default: false},
|
displayCopyFid: {type: Boolean, default: true},
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<label><translate translate-context="Content/Library/Input.Label/Verb">Search a remote library</translate></label>
|
<label><translate translate-context="Content/Library/Input.Label/Verb">Search a remote library</translate></label>
|
||||||
<div :class="['ui', 'action', {loading: isLoading}, 'input']">
|
<div :class="['ui', 'action', {loading: isLoading}, 'input']">
|
||||||
<input name="url" v-model="query" :placeholder="labels.placeholder" type="url">
|
<input name="url" v-model="query" :placeholder="labels.placeholder" type="url">
|
||||||
<button type="submit" class="ui icon button">
|
<button type="submit" :class="['ui', 'icon', {loading: isLoading}, 'button']">
|
||||||
<i class="search icon"></i>
|
<i class="search icon"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue