mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 16:51:42 +03:00
Merge pull request #4786 from urbit/la/fix-omnibox
interface: group feed no longer shows in omnibox
This commit is contained in:
commit
9ad12777ae
@ -99,9 +99,11 @@ export default function index(contacts, associations, apps, currentGroup, groups
|
||||
Object.keys(associations).filter((e) => {
|
||||
// skip apps with no metadata
|
||||
return Object.keys(associations[e]).length > 0;
|
||||
}).map((e) => {
|
||||
// iterate through each app's metadata object
|
||||
Object.keys(associations[e]).map((association) => {
|
||||
}).map((e) => {
|
||||
// iterate through each app's metadata object
|
||||
Object.keys(associations[e])
|
||||
.filter((association) => !associations?.[e]?.[association]?.metadata?.hidden)
|
||||
.map((association) => {
|
||||
const each = associations[e][association];
|
||||
let title = each.resource;
|
||||
if (each.metadata.title !== '') {
|
||||
|
Loading…
Reference in New Issue
Block a user