Skip to content

Commit 82c986c

Browse files
committed
UI changes
1 parent 98080b8 commit 82c986c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

frontend-nextjs/src/components/application-answer/questions/ranking.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export default function Ranking({
124124
ref={provided.innerRef}
125125
{...provided.draggableProps}
126126
{...provided.dragHandleProps}
127-
className="flex items-center p-3 bg-card border-1"
127+
className="flex items-center p-3 bg-card border-1 w-full max-w-4xl"
128128
>
129129
<span className="bg-primary-foreground text-foreground rounded-full w-8 h-8 flex items-center justify-center font-semibold mr-3 text-sm">
130130
{ index + 1 }

frontend-nextjs/src/components/application-answer/role-selector.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export default function RoleSelector({
105105
)}
106106
</Droppable>
107107

108-
<h3 className="text-sm font-semibold text-foreground mb-2">{dict.applicationpage.availableroles}</h3>
108+
<h3 className="text-sm font-semibold text-foreground mb-2">{dict.applicationpage.available_roles}</h3>
109109
<Droppable droppableId="available-roles">
110110
{(provided) => (
111111
<div
@@ -114,7 +114,7 @@ export default function RoleSelector({
114114
className="space-y-2 min-h-[12px] border-2 border-dashed border-muted rounded-lg p-2"
115115
>
116116
{selectedRoleIds.length === roles?.length && (
117-
<div className="text-sm text-muted-foreground px-2 py-1">{dict.applicationpage.emptyavailableroles}</div>
117+
<div className="text-sm text-muted-foreground px-2 py-1">{dict.applicationpage.empty_available_roles}</div>
118118
)}
119119
{availableRoles?.map((role, index) => (
120120
<Draggable

0 commit comments

Comments
 (0)