mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-05 07:08:42 +00:00
refactor(recovery): align internal vocabulary
This commit is contained in:
parent
2afb96ee13
commit
d2d766a8bb
6 changed files with 47 additions and 8 deletions
|
|
@ -246,9 +246,9 @@ export const RecoveryProtectedInventorySection: Component<
|
|||
selectClass="min-w-[10rem] max-w-[14rem]"
|
||||
>
|
||||
<For each={props.platformOptions()}>
|
||||
{(provider) => (
|
||||
<option value={provider}>
|
||||
{provider === 'all' ? 'All Platforms' : getSourcePlatformLabel(provider)}
|
||||
{(platform) => (
|
||||
<option value={platform}>
|
||||
{platform === 'all' ? 'All Platforms' : getSourcePlatformLabel(platform)}
|
||||
</option>
|
||||
)}
|
||||
</For>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue