Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Severino committed Oct 25, 2023
1 parent 7a35893 commit 334078b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/js/components/ActivityLog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<i :class="getIconClass(act.description)" />
</span>
<span v-else-if="state.actionIcons == 'both'">
<i :class="getIconClass(act.description)" />{{ act.description }}
<i :class="getIconClass(act.description)" /> {{ act.description }}
</span>
<span v-else>
{{ act.description }}
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/Alert.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
return !noicon.value && state.supportsIcon;
}),
hasIconText: computed(_ => {
return state.hasIcon && (!!icontext.value && !!icontext.value);
return state.hasIcon && !!icontext.value;
}),
supportsIcon: computed(_ => {
switch(type.value) {
Expand Down

0 comments on commit 334078b

Please sign in to comment.