Skip to content

Commit

Permalink
pkp/pkp-lib#10825 Revert dashboard table sizing to previous logic (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
jardakotesovec authored Feb 5, 2025
1 parent 857d7eb commit f52345c
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<TableCell fit-content>
<TableCell>
<PkpButton
class="-ms-3"
:aria-describedby="'submission-title-' + item.id"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<TableCell class="min-w-[17rem]">
<TableCell>
<div class="flex flex-col justify-center gap-y-2">
<component
:is="Components[config.component] || config.component"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<TableCell fit-content>{{ item.submissionId }}</TableCell>
<TableCell>{{ item.submissionId }}</TableCell>
</template>

<script setup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<TableCell
:id="'submission-title-' + item.id"
full-width-truncated
class="max-w-[25em] truncate"
:is-row-header="true"
>
<span class="text-lg-semibold" v-html="title"></span>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<TableCell fit-content>
<TableCell>
<PkpButton
class="-ms-3"
:aria-describedby="'submission-title-' + item.id"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<TableCell class="min-w-[17rem]">
<TableCell>
<div class="flex flex-col justify-center gap-y-2">
<component
:is="Components[config.component] || config.component"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<TableCell fit-content>{{ days }}</TableCell>
<TableCell>{{ days }}</TableCell>
</template>
<script setup>
import {computed} from 'vue';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<TableCell fit-content>{{ item.id }}</TableCell>
<TableCell>{{ item.id }}</TableCell>
</template>

<script setup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<TableCell fit-content>
<TableCell>
<span class="text-base-normal">
<StageBubble :extended-stage="extendedStage">
{{ stageLabel }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<TableCell
:id="'submission-title-' + item.id"
full-width-truncated
class="max-w-[25em] truncate"
:is-row-header="true"
>
<span class="text-base-bold">
Expand Down

0 comments on commit f52345c

Please sign in to comment.