Skip to content

Commit

Permalink
[frontend] comments (#5548-support-logs)
Browse files Browse the repository at this point in the history
  • Loading branch information
SarahBocognano committed Apr 29, 2024
1 parent a4e5a6d commit 9c1e808
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const useStyles = makeStyles(() => ({
height: 20,
float: 'left',
borderRadius: 4,
width: 80,
width: 120,
},
label: {
whiteSpace: 'nowrap',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,17 @@ const SupportPackages = () => {
const dataColumns = {
name: {
label: 'Name',
width: '25%',
width: '39%',
isSortable: true,
},
package_status: {
label: 'Status',
width: '25%',
width: '19%',
isSortable: true,
},
created: {
label: 'Date',
width: '25%',
width: '20%',
isSortable: true,
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11542,11 +11542,9 @@ enum SupportPackageOrdering {
}

input SupportPackageAddInput {
name: name_String_NotNull_minLength_2!
name: String!
}

input SupportPackageForceZipInput {
id: id_String_NotNull_minLength_2!
}

scalar id_String_NotNull_minLength_2
id: String!
}

0 comments on commit 9c1e808

Please sign in to comment.