Skip to content

Commit bf6a524

Browse files
Fix typo
1 parent c18c0fa commit bf6a524

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/components/CustomProcessPanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<DataTable ref="table" fa :data="data" :columns="columns" :next="next" class="CustomProcessPanel">
33
<template slot="toolbar">
44
<AsyncButton title="Store the process in the process editor on the server" :fn="addProcessFromScript" v-show="supportsCreate" :disabled="!this.hasProcess" fa confirm icon="fas fa-plus">Add</AsyncButton>
5-
<SyncButton v-if="supportsList" :name="plualizedName" :sync="reloadData" />
5+
<SyncButton v-if="supportsList" :name="pluralizedName" :sync="reloadData" />
66
<FullscreenButton :element="() => this.$el" />
77
</template>
88
<template #actions="p">

src/components/FilePanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<input type="file" name="uploadUserFile" class="uploadUserFile" ref="uploadUserFile" @change="uploadFiles" multiple>
1010
</div>
1111
</div>
12-
<SyncButton v-if="supportsList" :name="plualizedName" :sync="reloadData" />
12+
<SyncButton v-if="supportsList" :name="pluralizedName" :sync="reloadData" />
1313
<FullscreenButton :element="() => this.$el" />
1414
</template>
1515
<template #actions="p">

src/components/JobPanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<template slot="toolbar">
44
<AsyncButton title="Create a new job from the process in the process editor for batch processing" :fn="createJobFromScript" v-show="supportsCreate" :disabled="!this.hasProcess" fa confirm icon="fas fa-plus">Create Batch Job</AsyncButton>
55
<AsyncButton title="Run the process in the process editor directly and view the results without storing them permanently" :fn="executeProcess" v-show="supports('computeResult')" :disabled="!this.hasProcess" fa confirm icon="fas fa-play">Run now</AsyncButton>
6-
<SyncButton v-if="supportsList" :name="plualizedName" :sync="reloadData" />
6+
<SyncButton v-if="supportsList" :name="pluralizedName" :sync="reloadData" />
77
<FullscreenButton :element="() => this.$el" />
88
</template>
99
<template #actions="p">

src/components/ServicePanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<template slot="toolbar">
44
<AsyncButton title="Create a new permanent service from the process in the process editor" :fn="createServiceFromScript" v-show="supportsCreate" :disabled="!this.hasProcess" fa confirm icon="fas fa-plus">Create</AsyncButton>
55
<AsyncButton title="Quickly show the process on map without storing it permanently" :fn="quickViewServiceFromScript" v-show="supportsQuickView" :disabled="!this.hasProcess" fa confirm icon="fas fa-map">Show on Map</AsyncButton>
6-
<SyncButton v-if="supportsList" :name="plualizedName" :sync="reloadData" />
6+
<SyncButton v-if="supportsList" :name="pluralizedName" :sync="reloadData" />
77
<FullscreenButton :element="() => this.$el" />
88
</template>
99
<template #actions="p">

src/components/WorkPanelMixin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default (namespace, singular, plural, loadInitially = true) => {
99
data() {
1010
return {
1111
name: singular,
12-
plualizedName: plural,
12+
pluralizedName: plural,
1313
syncTimer: null,
1414
lastSyncTime: null
1515
};

0 commit comments

Comments
 (0)