Skip to content

Commit

Permalink
pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongundel committed Dec 3, 2024
1 parent a8fd2be commit 639c60d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ const toggleSize = () => {
<template>
<div class="header">
<div>
<h2>{{ $gettext("Scheme Editor Tools") }}</h2>
<h3>{{ $gettext("Scheme Editor Tools") }}</h3>
<div>
<Button @click="toggleSize">
<Button
:aria-label="$gettext('toggle editor size')"
@click="toggleSize"
>
<i
:class="{
pi: true,
Expand All @@ -34,7 +37,10 @@ const toggleSize = () => {
aria-hidden="true"
/>
</Button>
<Button @click="$emit('close')">
<Button
:aria-label="$gettext('close editor')"
@click="$emit('close')"
>
<i
class="pi pi-times"
aria-hidden="true"
Expand Down
4 changes: 2 additions & 2 deletions arches_lingo/src/arches_lingo/pages/SchemePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import SchemeStandard from "@/arches_lingo/components/scheme/report/SchemeStanda
import SchemeAuthority from "@/arches_lingo/components/scheme/report/SchemeAuthority.vue";
import SchemeEditor from "@/arches_lingo/components/scheme/editor/SchemeEditor.vue";
const editorVisible = ref<boolean>(true);
const sectionVisible = ref<boolean>(true);
const editorVisible = ref(true);
const sectionVisible = ref(true);
const onMaximize = () => {
editorVisible.value = true;
Expand Down

0 comments on commit 639c60d

Please sign in to comment.