Skip to content

Commit d33c27b

Browse files
authored
Merge pull request #439 from TaloDev/develop
Release 0.65.1
2 parents 4d59a28 + 164c208 commit d33c27b

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"lint-staged": {
7979
"*.{ts,js,tsx,jsx}": "eslint --fix"
8080
},
81-
"version": "0.65.0",
81+
"version": "0.65.1",
8282
"engines": {
8383
"node": "22.x"
8484
},

src/pages/ChannelStorage.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,11 @@ export default function ChannelStorage() {
9494
{(storageProp) => (
9595
<>
9696
<TableCell>{storageProp.key}</TableCell>
97-
<TableCell>{storageProp.value}</TableCell>
97+
<TableCell className='min-w-[400px] max-w-[400px]'>
98+
<span className='bg-gray-900 rounded text-xs flex'>
99+
<code className='align-middle inline-block p-2 break-all'>{storageProp.value}</code>
100+
</span>
101+
</TableCell>
98102
<TableCell>
99103
<div className='flex items-center'>
100104
<span>{storageProp.createdBy.identifier}</span>

0 commit comments

Comments
 (0)