Skip to content

[pull] main from activepieces:main #352

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 26 commits into from
May 7, 2025
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
75b37af
refactor(ui): move import flow button to create flow dropdown
Louai-Zokerburg May 6, 2025
c86131e
refactor(ui): move connections sidebar item to MISC section
Louai-Zokerburg May 6, 2025
75b2dd2
refactor: flows table to its own component
Louai-Zokerburg May 6, 2025
59070a9
refactor: issues table to its own component
Louai-Zokerburg May 6, 2025
e4e80c0
refactor(ui): group flow, history, issues under flows page
Louai-Zokerburg May 6, 2025
a297eb2
feat: add activeTab search param + reset search params on tab switch
Louai-Zokerburg May 6, 2025
635edb6
refactor: move flows-table to flows feature components
Louai-Zokerburg May 6, 2025
13ef656
refactor: move issues table to issues feature components
Louai-Zokerburg May 6, 2025
045b87d
refactor: extract columns from runs data table
Louai-Zokerburg May 6, 2025
908ca38
refactor: remove /runs route
Louai-Zokerburg May 6, 2025
2f36542
refactor(ui): remove runs sidebare item from automation group
Louai-Zokerburg May 6, 2025
c0eaeaa
refactor(ui): remove automation group
Louai-Zokerburg May 6, 2025
cb5518b
fix: type flows-table data properly
Louai-Zokerburg May 6, 2025
f3541c2
fix: make history and issues tab triggers acceccible only with right …
Louai-Zokerburg May 6, 2025
53169c2
refactor: pass folder list component as an optional prop to data table
Louai-Zokerburg May 6, 2025
e588471
refactor: extract create folder dialog to a separate component
Louai-Zokerburg May 6, 2025
6cb0f18
fix: rename form wasn't getting submited
Louai-Zokerburg May 6, 2025
09ee3b0
refactor: pass dialog trigger as children
Louai-Zokerburg May 7, 2025
9faf036
refactor: add onKeyDown to make sure form is submitted
Louai-Zokerburg May 7, 2025
848ce9d
refactor(ui): turn folders sidbar intro a horisontal tab-like filter
Louai-Zokerburg May 7, 2025
085c2ae
fix: numberOfFlows in folder doesnt change on flow delte/move
Louai-Zokerburg May 7, 2025
d49044e
refactor: turn FolderFilterComponent into customFilters: React.ReactN…
Louai-Zokerburg May 7, 2025
ee9bf25
refactor(ui): add icons to folder buttons + display 3 top folders ins…
Louai-Zokerburg May 7, 2025
2351749
refactor(ui): add icons to flows page tabs + rename "history" tab lab…
Louai-Zokerburg May 7, 2025
ac6e48b
Merge pull request #7585 from Louai-Zokerburg/revamp-dashboard
abuaboud May 7, 2025
96bc5d8
refactor: remove addConnectionsToFlowVersions functionality and relat…
abuaboud May 7, 2025
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
Prev Previous commit
Next Next commit
fix: numberOfFlows in folder doesnt change on flow delte/move
  • Loading branch information
Louai-Zokerburg committed May 7, 2025
commit 085c2ae04733c103eb35fb43aed86d2ec68930cb
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const FolderFilterList = ({ refresh }: { refresh: number }) => {
}
});
}, [
folders?.map((folder) => folder.displayName).join(','),
folders,
sortedAlphabeticallyIncreasingly,
]);

Expand Down Expand Up @@ -260,7 +260,9 @@ const FolderFilterList = ({ refresh }: { refresh: number }) => {
>
<div className="flex items-center">
<FolderIcon isFolderOpen={selectedFolderId === folder.id} />
<span className="ml-2">{folder.displayName}</span>
<span className="ml-2 mr-1">{folder.displayName}
<span className='text-xs font-semibold ml-1'>({folder.numberOfFlows})</span>
</span>
</div>
<FolderAction
folder={folder}
Expand Down