Skip to content

Commit

Permalink
fixup! Polish styles, text, signposting
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Apr 25, 2024
1 parent 2178716 commit 4b21934
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion arches/app/src/components/ControlledListManager/ListTree.vue
Original file line number Diff line number Diff line change
Expand Up @@ -255,11 +255,12 @@ const setParent = async (parentNode: typeof TreeNode) => {
v-if="movingItem.key"
class="actions"
>
<!-- disable HTML escaping: RDM Admins are trusted users -->
<Button
v-if="showMoveHereButton(slotProps.node.key)"
type="button"
class="move-button"
:label="$gettext('Move %{item} here', { item: movingItem.label })"
:label="$gettext('Move %{item} here', { item: movingItem.label }, true)"
@click="setParent(slotProps.node)"
/>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,8 @@ await fetchLists();
v-if="movingItem.key"
class="action-banner"
>
{{ $gettext("Selecting new parent for: %{item}", { item: movingItem.label }) }}
<!-- disable HTML escaping: RDM Admins are trusted users -->
{{ $gettext("Selecting new parent for: %{item}", { item: movingItem.label }, true) }}
<Button
type="button"
class="banner-button"
Expand Down

0 comments on commit 4b21934

Please sign in to comment.