Skip to content

Commit f52345c

Browse files
pkp/pkp-lib#10825 Revert dashboard table sizing to previous logic (#512)
1 parent 857d7eb commit f52345c

10 files changed

+10
-10
lines changed

src/pages/dashboard/components/DashboardTable/CellReviewAssignmentActions.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<TableCell fit-content>
2+
<TableCell>
33
<PkpButton
44
class="-ms-3"
55
:aria-describedby="'submission-title-' + item.id"

src/pages/dashboard/components/DashboardTable/CellReviewAssignmentActivity.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<TableCell class="min-w-[17rem]">
2+
<TableCell>
33
<div class="flex flex-col justify-center gap-y-2">
44
<component
55
:is="Components[config.component] || config.component"

src/pages/dashboard/components/DashboardTable/CellReviewAssignmentId.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<TableCell fit-content>{{ item.submissionId }}</TableCell>
2+
<TableCell>{{ item.submissionId }}</TableCell>
33
</template>
44

55
<script setup>

src/pages/dashboard/components/DashboardTable/CellReviewAssignmentTitle.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<TableCell
33
:id="'submission-title-' + item.id"
4-
full-width-truncated
4+
class="max-w-[25em] truncate"
55
:is-row-header="true"
66
>
77
<span class="text-lg-semibold" v-html="title"></span>

src/pages/dashboard/components/DashboardTable/CellSubmissionActions.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<TableCell fit-content>
2+
<TableCell>
33
<PkpButton
44
class="-ms-3"
55
:aria-describedby="'submission-title-' + item.id"

src/pages/dashboard/components/DashboardTable/CellSubmissionActivity/CellSubmissionActivity.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<TableCell class="min-w-[17rem]">
2+
<TableCell>
33
<div class="flex flex-col justify-center gap-y-2">
44
<component
55
:is="Components[config.component] || config.component"

src/pages/dashboard/components/DashboardTable/CellSubmissionDays.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<TableCell fit-content>{{ days }}</TableCell>
2+
<TableCell>{{ days }}</TableCell>
33
</template>
44
<script setup>
55
import {computed} from 'vue';

src/pages/dashboard/components/DashboardTable/CellSubmissionId.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<TableCell fit-content>{{ item.id }}</TableCell>
2+
<TableCell>{{ item.id }}</TableCell>
33
</template>
44

55
<script setup>

src/pages/dashboard/components/DashboardTable/CellSubmissionStage.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<TableCell fit-content>
2+
<TableCell>
33
<span class="text-base-normal">
44
<StageBubble :extended-stage="extendedStage">
55
{{ stageLabel }}

src/pages/dashboard/components/DashboardTable/CellSubmissionTitle.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<TableCell
33
:id="'submission-title-' + item.id"
4-
full-width-truncated
4+
class="max-w-[25em] truncate"
55
:is-row-header="true"
66
>
77
<span class="text-base-bold">

0 commit comments

Comments
 (0)