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

refactor(web): convert some storage components to TypeScript (round 1) #1578

Merged
merged 21 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
5d93b33
refactor(web): convert storage utils module to TypeScript
imobachgs Sep 5, 2024
421aadb
feat(web): convert EncryptionField to TypeScript
imobachgs Sep 5, 2024
12bacd6
refactor(web): convert PartitionsField to TypeScript
imobachgs Sep 5, 2024
a9603cd
fix(web): adapt call to useVolumeTemplates
imobachgs Sep 5, 2024
8358a94
refactor(web): convert ProposalSettingsSection to TypeScript
imobachgs Sep 5, 2024
0d9626a
refactor(web): adapt ProposalSettingsSection tests
imobachgs Sep 5, 2024
bc7c91e
refactor(web): adapt SnapshotsField tests
imobachgs Sep 5, 2024
0dd5e03
refactor(web): convert VolumeDialog to TypeScript
imobachgs Sep 5, 2024
bdf5ea0
refactor(web): convert InvalidMaxSizeError to TypeScript
imobachgs Sep 5, 2024
72bece4
refactor(web): export TargetConfig from InstallationDeviceField
imobachgs Sep 5, 2024
29511fe
refactor(web): convert VolumeFields to TypeScript
imobachgs Sep 5, 2024
2a9ec0b
refactor(web): convert VolumeLocationDialog to TypeScript
imobachgs Sep 5, 2024
01bb419
refactor(web): convert VolumeLocationSelectorTable to TypeScript
imobachgs Sep 5, 2024
f1328ef
chore(web): remove the @function tags
imobachgs Sep 5, 2024
0413927
chore(web): clean-up DeviceSelection component
imobachgs Sep 5, 2024
881d506
chore(web): convert SpacePolicySelection to TypeScript
imobachgs Sep 5, 2024
f8cef05
fix(web): fix SpaceAction definition
imobachgs Sep 5, 2024
a89816e
chore(web): disable accidentally enabled test
imobachgs Sep 5, 2024
512811c
fix(web): update storage API types
imobachgs Sep 5, 2024
ab1f373
refactor(web): drop storage client tests
imobachgs Sep 5, 2024
6893e35
refactor(web): convert BootSelection to TypeScript
imobachgs Sep 5, 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
2 changes: 1 addition & 1 deletion web/src/api/storage/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ export type ShrinkingInfo = {
unsupported: Array<(string)>;
};

export type SpaceAction = 'force_delete' | 'resize';
export type SpaceAction = 'force_delete' | 'resize' | 'keep';

export type SpaceActionSettings = {
action: SpaceAction;
Expand Down
Loading
Loading