Michael Cole

Results 43 comments of Michael Cole

Ok, this is hacky, but here's how to do it: ``` AdminConfig = { // Define your admin config here. }; // Hack for admin user's table: https://github.com/yogiben/meteor-admin/blob/4b20c82aa39addcc2cc5cb9f93b835c56a31e60d/lib/both/startup.coffee#L172 import Tabular...

CSS works: ``` a[href="/admin/Surveys/new"] { display: none !important; } ```

@challett how to you access the tableColumns array for users? I'm getting this error: `Error: Users is not in the [object global]` on this code: ``` AdminConfig = { collections:...

https://github.com/yogiben/meteor-admin/issues/319

Things change. This project was a step along the way :-) https://github.com/hexojs/hexo-browsersync ``` npm install hexo-browsersync --save ``` and done.

I'm not using Storybook, but I have this exact same issue with a Nuxt 3 programmatic build. I have a working version (a "reproduction") and a non-working version (my app)....

Hi, I wrote a bit about this in https://github.com/libp2p/js-libp2p/pull/2449#issuecomment-2023373834. I wrote a bit about the use case in https://github.com/libp2p/js-libp2p/issues/2454 More or less, my use case is an electron app with...

This is discussed here: https://github.com/libp2p/js-libp2p/blob/07b9f49d3aa3ca51727355fecb5c88f127236def/packages/libp2p/src/address-manager/README.md#dynamic-address-modifications

Hi Alex, thanks for your reply. I'm not sure how js-libp2p development is funded or organized. I am a freelancer, and I've worked on all kinds of projects from SMB...

To access the address manager, here is a workaround: ``` import { DefaultAddressManager } from 'libp2p/dist/src/address-manager' // @ts-ignore broken libp2p types const am = libp2p.components.addressManager as DefaultAddressManager ```