Skip to content

Commit

Permalink
Update EditContainer.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
kokofixcomputers authored Oct 30, 2024
1 parent 4ef6362 commit d3d5d27
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions resources/scripts/components/server/edit/EditContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import TitledGreyBox from '@/components/elements/TitledGreyBox';
import SpinnerOverlay from '@/components/elements/SpinnerOverlay';
import ServerContentBlock from '@/components/elements/ServerContentBlock';
import ServerLimitationBar from '@/components/elements/server/ServerLimitationBar';
import ResourceBar from '@/components/elements/store/ResourceBar';

const Container = styled.div`
${tw`flex flex-wrap`};
Expand Down Expand Up @@ -72,6 +73,9 @@ export default () => {
>
This will move resources between your account and the server. Are you sure you want to continue?
</Dialog.Confirm>
<h3 classname={'text-2xl'}>Your Account's Currently Available Resources:</h3>

Check failure on line 76 in resources/scripts/components/server/edit/EditContainer.tsx

View workflow job for this annotation

GitHub Actions / TypeScript

Unknown property 'classname' found, use 'className' instead

Check failure on line 76 in resources/scripts/components/server/edit/EditContainer.tsx

View workflow job for this annotation

GitHub Actions / TypeScript

`'` can be escaped with `&apos;`, `&lsquo;`, `&#39;`, `&rsquo;`
<ResourceBar className={'w-full lg:w-3/4'} />
<h3 classname={'text-2xl'}>Server's Currently Assigned Resources:</h3>

Check failure on line 78 in resources/scripts/components/server/edit/EditContainer.tsx

View workflow job for this annotation

GitHub Actions / TypeScript

Unknown property 'classname' found, use 'className' instead

Check failure on line 78 in resources/scripts/components/server/edit/EditContainer.tsx

View workflow job for this annotation

GitHub Actions / TypeScript

`'` can be escaped with `&apos;`, `&lsquo;`, `&#39;`, `&rsquo;`
<ServerLimitationBar className={'w-full lg:w-3/4'} />
<Container css={tw`lg:grid lg:grid-cols-3 gap-4 my-10`}>
<TitledGreyBox title={'Edit server CPU limit'} css={tw`mt-8 sm:mt-0`}>
Expand Down

0 comments on commit d3d5d27

Please sign in to comment.