Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Oct 5, 2024
1 parent 6f45931 commit 38a8e5a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/assets/views/PermissionsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
</UFSprunjeColumn>
<UFSprunjeColumn>
<div>
<code>{{item.slug}}</code>
<code>{{ item.slug }}</code>
</div>
<div>
↳ <code>{{item.conditions}}</code>
↳ <code>{{ item.conditions }}</code>
</div>
<div>
<i>{{item.description}}</i>
<i>{{ item.description }}</i>
</div>
</UFSprunjeColumn>
</template>
Expand Down
6 changes: 4 additions & 2 deletions app/assets/views/UsersView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import moment from 'moment'
caption="A listing of the users for your site. Provides management tools including the ability to
edit user details, manually activate users, enable/disable users, and more." />

<UFCardBox>
<UFCardBox>
<UFSprunjeTable dataUrl="/api/users">
<template #header>
<UFSprunjeHeader>User</UFSprunjeHeader>
Expand All @@ -32,7 +32,9 @@ import moment from 'moment'
</UFSprunjeColumn>
<UFSprunjeColumn>
<div>{{ moment(item.last_activity.occurred_at).format('dddd') }}</div>
<div>{{ moment(item.last_activity.occurred_at).format('MMM Do, YYYY h:mm a') }}</div>
<div>
{{ moment(item.last_activity.occurred_at).format('MMM Do, YYYY h:mm a') }}
</div>
<i>{{ item.last_activity.description }}</i>
</UFSprunjeColumn>
<UFSprunjeColumn></UFSprunjeColumn>
Expand Down

0 comments on commit 38a8e5a

Please sign in to comment.