the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

Check array length before rendering table header

+4 -4
+1 -1
apps/web/src/pages/settings/files/Files.tsx
··· 79 79 </p> 80 80 <div className="w-full overflow-x-auto"> 81 81 <table className="table mb-20"> 82 - {!!files?.files && ( 82 + {!!files?.files?.length && ( 83 83 <thead> 84 84 <tr> 85 85 <th className="normal-case text-[14px]">Path</th>
+1 -1
apps/web/src/pages/settings/secrets/Secrets.tsx
··· 79 79 </p> 80 80 <div className="w-full overflow-x-auto"> 81 81 <table className="table mb-20"> 82 - {!!secrets?.secrets && ( 82 + {!!secrets?.secrets?.length && ( 83 83 <thead> 84 84 <tr> 85 85 <th className="normal-case text-[14px]">Name</th>
+1 -1
apps/web/src/pages/settings/variables/Variables.tsx
··· 82 82 </p> 83 83 <div className="w-full overflow-x-auto"> 84 84 <table className="table mb-20"> 85 - {!!variables?.variables && ( 85 + {!!variables?.variables?.length && ( 86 86 <thead> 87 87 <tr> 88 88 <th className="normal-case text-[14px]">Name</th>
+1 -1
apps/web/src/pages/settings/volumes/Volumes.tsx
··· 81 81 </p> 82 82 <div className="w-full overflow-x-auto"> 83 83 <table className="table mb-20"> 84 - {!!volumes?.volumes && ( 84 + {!!volumes?.volumes?.length && ( 85 85 <thead> 86 86 <tr> 87 87 <th className="normal-case text-[14px]">Name</th>