Skip to content
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

[WEB-1907] Fix: favorites #5292

Merged
merged 22 commits into from
Aug 4, 2024
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
790e16e
chore: workspace user favorites
NarayanBavisetti Jul 23, 2024
9d1ce25
chore: added project id in entity type
NarayanBavisetti Jul 25, 2024
827e11f
chore: removed the extra key
NarayanBavisetti Jul 25, 2024
9ee459f
chore: removed the project member filter
NarayanBavisetti Jul 26, 2024
1054263
chore: updated the project permission layer
NarayanBavisetti Jul 26, 2024
d8f13b3
chore: updated the workspace group favorite filter
NarayanBavisetti Jul 26, 2024
9454e4d
fix: project favorite toggle
NarayanBavisetti Jul 29, 2024
4077618
chore: Fav feature
gakshita Jul 29, 2024
4e80865
Merge branch 'preview' of https://github.com/makeplane/plane into cho…
gakshita Jul 29, 2024
db9be42
fix: build errors + added navigation
gakshita Jul 29, 2024
44bcec7
fix: added remove entity icon
gakshita Jul 30, 2024
11dcce2
fix: nomenclature
gakshita Jul 30, 2024
049b96e
chore: hard delete favorites
NarayanBavisetti Jul 31, 2024
d51953f
fix: review changes
gakshita Aug 1, 2024
e1400da
Merge branch 'chore/soft-delete-favorite' of https://github.com/makep…
gakshita Aug 1, 2024
eff77c3
fix: added optimistic addition to the store
gakshita Aug 1, 2024
c4f3f9a
chore: user favorite hard delete
NarayanBavisetti Aug 1, 2024
e700071
fix: linting fixed
gakshita Aug 1, 2024
c26c028
Merge branch 'chore/user-favorites' of https://github.com/makeplane/p…
gakshita Aug 1, 2024
477aeb9
fix: favorite bugs
gakshita Aug 3, 2024
fd12f54
fix: ts bugs
gakshita Aug 3, 2024
e55adca
Merge branch 'preview' of https://github.com/makeplane/plane into fix…
gakshita Aug 3, 2024
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: linting fixed
  • Loading branch information
gakshita committed Aug 1, 2024
commit e70007112257080c8092fe4684b8b783685be249
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export const FavoriteFolder: React.FC<Props> = (props) => {
setIsDragging(true);
},
onDrop: ({ self, source }) => {
setInstruction(undefined);
setIsDragging(false);
const sourceId = source?.data?.id as string | undefined;
const destinationId = self?.data?.id as string | undefined;
Expand Down