refactor: refs #7553 adjust ticket notes view in summary
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
2c15f79a2d
commit
edea17340d
|
@ -281,6 +281,7 @@ function toTicketUrl(section) {
|
||||||
type="textarea"
|
type="textarea"
|
||||||
class="notes"
|
class="notes"
|
||||||
readonly
|
readonly
|
||||||
|
autogrow
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</VnLv>
|
</VnLv>
|
||||||
|
@ -377,7 +378,7 @@ function toTicketUrl(section) {
|
||||||
</QTooltip>
|
</QTooltip>
|
||||||
</QIcon>
|
</QIcon>
|
||||||
<QIcon
|
<QIcon
|
||||||
name="vn:reserva"
|
name="vn:reserved"
|
||||||
v-show="props.row.reserved"
|
v-show="props.row.reserved"
|
||||||
color="primary"
|
color="primary"
|
||||||
size="xs"
|
size="xs"
|
||||||
|
@ -576,7 +577,7 @@ function toTicketUrl(section) {
|
||||||
</template>
|
</template>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.notes {
|
.notes {
|
||||||
width: max-content;
|
width: fit-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
.q-card.q-card--dark.q-dark.vn-one {
|
.q-card.q-card--dark.q-dark.vn-one {
|
||||||
|
|
|
@ -36,6 +36,7 @@ const selectedClient = ref();
|
||||||
const stateStore = useStateStore();
|
const stateStore = useStateStore();
|
||||||
const from = Date.vnNew();
|
const from = Date.vnNew();
|
||||||
from.setHours(0, 0, 0, 0);
|
from.setHours(0, 0, 0, 0);
|
||||||
|
from.setDate(from.getDate() - 7);
|
||||||
const to = Date.vnNew();
|
const to = Date.vnNew();
|
||||||
to.setHours(23, 59, 0, 0);
|
to.setHours(23, 59, 0, 0);
|
||||||
to.setDate(to.getDate() + 1);
|
to.setDate(to.getDate() + 1);
|
||||||
|
@ -68,6 +69,7 @@ const columns = computed(() => [
|
||||||
name: 'statusIcons',
|
name: 'statusIcons',
|
||||||
hidden: true,
|
hidden: true,
|
||||||
format: () => '',
|
format: () => '',
|
||||||
|
columnClass: 'expand',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
|
|
Loading…
Reference in New Issue