Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/scripts/eslint/i18n-usage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function getMemberKey(node: TSESTree.MemberExpression) {

// strings['title']
if (node.computed && node.property?.type === "Literal" && typeof node.property.value === "string") {
node.property.value;
return node.property.value;
}

return undefined;
Expand Down
2 changes: 2 additions & 0 deletions app/src/views/AccountDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,8 @@ export function Component() {
withPadding
withDarkBackground
spacing="lg"
empty={isNotDefined(montandonTokenResponse)
|| montandonTokenResponse.results.length === 0}
>
<ListView
layout="grid"
Expand Down
1 change: 1 addition & 0 deletions packages/ui/src/components/Modal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ function Modal(props: Props) {
{...containerProps}
withPadding
withoutWrapInHeader
withoutWrapInFooter
className={_cs(styles.modal, className)}
withContentOverflow
headerActions={(!withoutCloseButton || headerActions) ? (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
.popup {
display: flex;
flex-direction: column;
padding: var(--go-ui-spacing-sm) 0;

.list {
display: flex;
flex-direction: column;
flex-grow: 1;
overflow: auto;

.list-item {
Expand Down