comparison client/src/components/fairway/Profiles.vue @ 2754:d0f6c222f4f9

client:correct a set of strings marking
author Fadi Abbud <fadi.abbud@intevation.de>
date Thu, 21 Mar 2019 13:24:49 +0100
parents 85de42146bdb
children 30a753f51a3c
comparison
equal deleted inserted replaced
2753:2aa1620ffd9e 2754:d0f6c222f4f9
4 'box ui-element rounded bg-white text-nowrap', 4 'box ui-element rounded bg-white text-nowrap',
5 { expanded: showProfiles } 5 { expanded: showProfiles }
6 ]" 6 ]"
7 > 7 >
8 <div style="width: 18rem"> 8 <div style="width: 18rem">
9 <UIBoxHeader icon="chart-area" title="Profiles" :closeCallback="close" /> 9 <UIBoxHeader
10 icon="chart-area"
11 :title="profilesLable"
12 :closeCallback="close"
13 />
10 <div class="box-body"> 14 <div class="box-body">
11 <transition name="fade"> 15 <transition name="fade">
12 <div class="loading" v-if="surveysLoading || profileLoading"> 16 <div class="loading" v-if="surveysLoading || profileLoading">
13 <font-awesome-icon icon="spinner" spin /> 17 <font-awesome-icon icon="spinner" spin />
14 </div> 18 </div>
258 "startPoint", 262 "startPoint",
259 "endPoint", 263 "endPoint",
260 "profileLoading", 264 "profileLoading",
261 "waterLevels" 265 "waterLevels"
262 ]), 266 ]),
267 profilesLable() {
268 return this.$gettext("Profiles");
269 },
263 selectedBottleneck: { 270 selectedBottleneck: {
264 get() { 271 get() {
265 return this.$store.state.bottlenecks.selectedBottleneck; 272 return this.$store.state.bottlenecks.selectedBottleneck;
266 }, 273 },
267 set(name) { 274 set(name) {