7691-testToMaster #537

Merged
alexm merged 395 commits from 7691-testToMaster into master 2024-07-09 05:39:56 +00:00
3 changed files with 1 additions and 21 deletions
Showing only changes of commit a84c20f2ce - Show all commits

View File

@ -3,11 +3,4 @@ import qFormMixin from './qformMixin';
export default boot(({ app }) => {
app.mixin(qFormMixin);
app.config.globalProperties.$emitEvent = function (eventName, payload) {
app._instance?.emit(eventName, payload);
};
app.config.globalProperties.$onEvent = function (eventName, callback) {
app._instance?.on(eventName, callback);
};
});

View File

@ -216,8 +216,7 @@ const detailsColumns = ref([
<template #body-cell-description="{ row, value }">
<QTd>
<div
class="row column full-width justify-between flex-start"
style="align-items: flex-start"
class="row column full-width justify-between items-start"
>
{{ value }}
<div v-if="value" class="subName">

View File

@ -1,12 +0,0 @@
import { defineStore } from 'pinia';
export const useImagesStore = defineStore('imagesStore', {
state: () => ({
images: {},
}),
actions: {
async pushImage(url, data) {
this.images[url] = data;
},
},
});