Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Fix operation column to the right side
Browse files Browse the repository at this point in the history
Signed-off-by: Volker Theile <[email protected]>
  • Loading branch information
votdev committed Sep 13, 2023
1 parent ee2bc45 commit f6aca45
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/routes/objectStorage/ObjectStoreList.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ function list({
title: 'Name',
dataIndex: 'name',
key: 'name',
width: 200,
render: (text, record) => {
return (
<div>{record.name}</div>
Expand All @@ -61,6 +62,7 @@ function list({
title: 'Endpoints',
dataIndex: 'endpoints',
key: 'endpoints',
width: 500,
render: (text, record) => {
return (
<div>{record.endpoints}</div>
Expand All @@ -70,7 +72,8 @@ function list({
{
title: 'Operation',
key: 'operation',
width: 120,
width: 110,
fixed: 'right',
render: (text, record) => {
return (
<ObjectStoreActions {...actionsProps} selected={record} />
Expand Down

0 comments on commit f6aca45

Please sign in to comment.