Skip to content

Commit 4096e62

Browse files
committed
fix padding option
1 parent ec01c9e commit 4096e62

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/features/decoder/components/jwt-input.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export const JwtInputComponent: React.FC<JwtInputComponentProps> = ({
8080
languageCode={languageCode}
8181
title={dictionary.title}
8282
compactTitle={dictionary.compactTitle}
83-
options={{ fullWidth: true, noPadding: false }}
83+
options={{ fullWidth: true, noPadding: true }}
8484
messages={{
8585
success: [dictionary.successMessage],
8686
errors: decodeErrors$,

src/features/encoder/components/encoded-jwt-output.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const EncodedJwtOutputComponent: React.FC<
2929
title={dictionary.title}
3030
hasHeaderIcon
3131
compactTitle={dictionary.title}
32-
options={{ noPadding: false, fullHeight: true, isOutput: true }}
32+
options={{ noPadding: true, fullHeight: true, isOutput: true }}
3333
messages={{
3434
warnings: encodingWarnings,
3535
errors: encodingErrors,

src/features/encoder/components/token-encoder-input.component.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ export const TokenEncoderInputComponent: React.FC<
226226
</CardToolbarComponent>
227227
),
228228
},
229-
options: { noPadding: false },
229+
options: { noPadding: true },
230230
},
231231
{
232232
id: dataTestidDictionary.encoder.payloadEditor.id,
@@ -255,7 +255,7 @@ export const TokenEncoderInputComponent: React.FC<
255255
</CardToolbarComponent>
256256
),
257257
},
258-
options: { noPadding: false },
258+
options: { noPadding: true },
259259
},
260260
];
261261

@@ -271,7 +271,7 @@ export const TokenEncoderInputComponent: React.FC<
271271
? dictionary.signatureEditor.compactTitle.secret
272272
: dictionary.signatureEditor.compactTitle.privateKey,
273273
options: {
274-
noPadding: false,
274+
noPadding: true,
275275
},
276276
children: (
277277
<>

0 commit comments

Comments
 (0)