Skip to content

Commit

Permalink
Merge pull request #9493 from ToolJet/community/platformv1.0
Browse files Browse the repository at this point in the history
Release: Platform Community (v2.38.0)
  • Loading branch information
gsmithun4 committed Apr 29, 2024
2 parents 0fae5a0 + 06369d9 commit 4fd5666
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.37.1
2.38.0
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ describe("User permissions", () => {
);
cy.get(
'[data-cy="go-to-workspace-constants-option-button"]'
).verifyVisibleElement("have.text", "Go to workspace constants");
).verifyVisibleElement("have.text", "Go to Workspace constants");
cy.logoutApi();
});
});
2 changes: 1 addition & 1 deletion frontend/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.37.1
2.38.0
2 changes: 1 addition & 1 deletion frontend/src/HomePage/HomePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ class HomePageComponent extends React.Component {
</span>
</div>
)}
{meta.total_count > 0 && (
{(isLoading || meta.total_count > 0) && (
<AppList
apps={apps}
canCreateApp={this.canCreateApp}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/ManageOrgVars/ManageOrgVars.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ class RawManageOrgVarsComponent extends React.Component {
>
<Button.Content
iconSrc="assets/images/icons/arrow-right.svg"
title={'Go to workspace constants'}
title={'Go to Workspace constants'}
direction="right"
/>
</Button>
Expand Down
9 changes: 8 additions & 1 deletion frontend/src/_components/AppModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,13 @@ export function AppModal({
title={title}
footerContent={
<>
<ButtonSolid variant="tertiary" onClick={closeModal} data-cy="cancel-button" className="modal-footer-divider">
<ButtonSolid
variant="tertiary"
onClick={closeModal}
data-cy="cancel-button"
className="modal-footer-divider"
disabled={isLoading}
>
Cancel
</ButtonSolid>
<ButtonSolid
Expand Down Expand Up @@ -157,6 +163,7 @@ export function AppModal({
style={{
borderColor: errorText ? '#DB4324 !important' : 'initial',
}}
disabled={isLoading}
/>
{errorText ? (
<small
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/_components/SearchBox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const SearchBox = forwardRef(
autoFocus={autoFocus}
ref={ref}
/>
{searchText.length > 0 ? (
{searchText.length >= 0 ? (
<span className="input-icon-addon end" onMouseDown={clearSearchText}>
<div className="d-flex tj-common-search-input-clear-icon" title="clear">
<SolidIcon name="remove" />
Expand Down
9 changes: 8 additions & 1 deletion frontend/src/_styles/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3322,6 +3322,10 @@ input:focus-visible {
#4c5b79 80%);
}

.app-icon-skeleton {
background-color: #3A4251 !important;
}

.folder-icon-skeleton::after {
background-image: linear-gradient(to right,
#566177 0,
Expand Down Expand Up @@ -6242,6 +6246,7 @@ a.step-item-disabled {

.notification-center {
max-height: 500px;
min-width: 420px;
overflow: auto;
margin-left: 11px !important;

Expand Down Expand Up @@ -7942,7 +7947,6 @@ tbody {
padding-bottom: 24px;
border-right: 1px solid var(--slate5);

&[data-name="Workspace constants"],
&[data-name="Profile settings"] {
border-right: none;
border-bottom: 1px solid var(--slate5);
Expand Down Expand Up @@ -8402,6 +8406,9 @@ tbody {
background-color: #2F3C4C !important;
background-image: linear-gradient(90deg, #2F3C4C, #2F3C4C, #2F3C4C) !important;
}
.react-loading-skeleton::after {
background-image: linear-gradient(90deg, #2F3C4C, #3A4251, #2F3C4C) !important;
}
}

@keyframes up-and-down {
Expand Down
2 changes: 1 addition & 1 deletion server/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.37.1
2.38.0

0 comments on commit 4fd5666

Please sign in to comment.