Skip to content

Commit

Permalink
fix: order of actions
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Nov 23, 2024
1 parent eb3ec37 commit f358a51
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/views/FilesList/FileEntry/FileEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@
:extension="'.pdf'" />
</td>

<!-- Actions -->
<FileEntryActions ref="actions"
:class="`files-list__row-actions-${source.nodeId}`"
:opened.sync="openedMenu"
:source="source"
:loading="loading" />

<!-- Status -->
<td class="files-list__row-status"
@click="openDetailsIfAvailable">
Expand All @@ -26,13 +33,6 @@
@click="openDetailsIfAvailable">
<NcDateTime v-if="source.request_date" :timestamp="mtime" :ignore-seconds="true" />
</td>

<!-- Actions -->
<FileEntryActions ref="actions"
:class="`files-list__row-actions-${source.nodeId}`"
:opened.sync="openedMenu"
:source="source"
:loading="loading" />
</tr>
</template>

Expand Down

0 comments on commit f358a51

Please sign in to comment.