Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix spacing between text and icon
Signed-off-by: Julius Härtl <[email protected]>
  • Loading branch information
juliusknorr committed Dec 27, 2019
commit 5f3e3aee98ac952ac7378d2fcde65c57a5641143
6 changes: 4 additions & 2 deletions apps/workflowengine/src/components/Rule.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion apps/workflowengine/src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 || '',
})
Expand Down
2 changes: 1 addition & 1 deletion apps/workflowengine/src/styles/operation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down