refactor: refs #8673 replace VnPopup with inline display of evaNotes in ExtraCommunity.vue
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
BENJAMIN ESTEVE DIAZ CANO 2025-03-25 09:58:36 +01:00
parent cd0a79b444
commit 97832a7da9
1 changed files with 9 additions and 13 deletions

View File

@ -18,7 +18,6 @@ import { usePrintService } from 'composables/usePrintService';
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
import axios from 'axios';
import RightMenu from 'src/components/common/RightMenu.vue';
import VnPopup from 'src/components/common/VnPopup.vue';
const stateStore = useStateStore();
const { t } = useI18n();
@ -637,18 +636,7 @@ watch(route, () => {
<QTd />
<QTd />
<QTd>
<QBtn
v-if="entry.evaNotes"
icon="comment"
size="md"
flat
color="primary"
>
<VnPopup
:title="t('globals.observations')"
:content="entry.evaNotes"
/>
</QBtn>
<span>{{ entry.evaNotes }}</span>
</QTd>
</QTr>
</template>
@ -721,4 +709,12 @@ watch(route, () => {
white-space: normal;
width: max-content;
}
.q-td {
&:nth-child(15) {
white-space: normal;
text-align: left;
word-break: break-word;
}
}
</style>