Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-12-23 14:35:45 +0300
committerJulius Härtl <jus@bitgrid.net>2019-12-27 10:45:39 +0300
commit5f3e3aee98ac952ac7378d2fcde65c57a5641143 (patch)
tree25a5ee17a80865cee55435dcfe90f3260d911452 /apps/workflowengine/src
parent8ec66d1e954d84900f3f1bdd5cd958aef5abd3eb (diff)
Fix spacing between text and icon
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/workflowengine/src')
-rw-r--r--apps/workflowengine/src/components/Rule.vue6
-rw-r--r--apps/workflowengine/src/store.js2
-rw-r--r--apps/workflowengine/src/styles/operation.scss2
3 files changed, 6 insertions, 4 deletions
diff --git a/apps/workflowengine/src/components/Rule.vue b/apps/workflowengine/src/components/Rule.vue
index 5285005f53b..51eb0665eeb 100644
--- a/apps/workflowengine/src/components/Rule.vue
+++ b/apps/workflowengine/src/components/Rule.vue
@@ -30,7 +30,7 @@
@input="updateOperation" />
</Operation>
<div class="buttons">
- <button class="status-button icon"
+ <button class="status-button icon"
:class="ruleStatus.class"
@click="saveRule">
{{ ruleStatus.title }}
@@ -42,7 +42,9 @@
{{ t('workflowengine', 'Delete') }}
</button>
</div>
- <p v-if="error" class="error-message">{{ error }}</p>
+ <p v-if="error" class="error-message">
+ {{ error }}
+ </p>
</div>
</div>
</template>
diff --git a/apps/workflowengine/src/store.js b/apps/workflowengine/src/store.js
index a8be467193d..7cb1956b6ff 100644
--- a/apps/workflowengine/src/store.js
+++ b/apps/workflowengine/src/store.js
@@ -99,7 +99,7 @@ const store = new Vuex.Store({
events,
name: '', // unused in the new ui, there for legacy reasons
checks: [
- { class: null, operator: null, value: '' }
+ { class: null, operator: null, value: '' },
],
operation: rule.operation || '',
})
diff --git a/apps/workflowengine/src/styles/operation.scss b/apps/workflowengine/src/styles/operation.scss
index c3ca64465e0..89c105d58fe 100644
--- a/apps/workflowengine/src/styles/operation.scss
+++ b/apps/workflowengine/src/styles/operation.scss
@@ -16,7 +16,7 @@
background-size: 50px 50px;
background-position: center center;
margin-top: 10px;
- margin-bottom: 20px;
+ margin-bottom: 10px;
background-repeat: no-repeat;
}
.actions__item__description {