mirror of
https://github.com/uqbar-dao/nectar.git
synced 2024-12-22 08:01:47 +03:00
Merge branch 'develop' into hf/terminal-log-rotation
This commit is contained in:
commit
c5be279f52
12
entitlements.plist
Normal file
12
entitlements.plist
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<!-- Required for running Kinode binary on macOS. Do I know why? Absolutely not.
|
||||
Do not touch without testing after notarizing, changes break things unexpectedly.-->
|
||||
<key>com.apple.security.cs.allow-jit</key>
|
||||
<true/>
|
||||
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
@ -31,7 +31,7 @@ const AllApps: React.FC = () => {
|
||||
const o = [...orderedApps].sort((a, b) => {
|
||||
return a.order - b.order;
|
||||
});
|
||||
return o;
|
||||
return o.filter(app => app.path !== null);
|
||||
}, [orderedApps, apps]);
|
||||
|
||||
const displayedApps = expanded
|
||||
@ -92,6 +92,7 @@ const AllApps: React.FC = () => {
|
||||
<div
|
||||
className={`apps-grid ${expanded ? "expanded" : ""} ${isMobile ? "mobile" : ""
|
||||
}`}
|
||||
style={{ gridTemplateColumns: `repeat(${Math.min(displayedApps.length, 5)}, 1fr)` }}
|
||||
>
|
||||
{displayedApps.map((app, index) => (
|
||||
<div
|
||||
|
@ -159,7 +159,6 @@ footer {
|
||||
|
||||
.apps-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, 1fr);
|
||||
width: 100%;
|
||||
color: var(--off-white);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user