Tobias Diez
Tobias Diez
I think, 10 or 15 is fine. You knows what our users put in their columns. It also makes it possible to temporarily shrink a column because it's not important...
Restoring the last column widths works currently and is not something that should be controlled by the resize policy. My guess is that https://github.com/JabRef/jabref/pull/7181/files#diff-535037ff480247bb2ecacf90ae5281974308e819eb2c3eed6b5cb15931a077caR122-R125 is overwriting https://github.com/JabRef/jabref/blob/e66f5be7d82c7a7618fe327fe958ec57a25ea598/src/main/java/org/jabref/gui/maintable/columns/MainTableColumn.java#L17-L21
@Mordred Thanks for the suggestion. Could you provide the other exports as PR review suggestions, so I can easily commit them to this PR in your name? @jpvajda @MrDoomBringer I...
@bignimbus Thanks for investigating. I get a similar message on CircleCI: >Could not find a usable config.yml, you may have revoked the CircleCI OAuth app.Please sign out of CircleCI and...
I've now created a circleci account (via github oauth) and it seems like this did the job. Strange though...
I guess it depends on what you define as the public interface. For example, direct imports of js files like `'@apollo/client/testing/core/mocking/mockClient.js'` I would consider as a private implementation detail whose...
I think this is at least related to https://github.com/apollographql/invariant-packages/issues/227. Thus probably upgrading ts-invariant here in apollo-client to >0.10 should help.
@benjamn Latest with https://github.com/apollographql/apollo-client/commit/d12921abab4e542d1b3cd9192fbdce5639cd35b5, apollo-client uses a recent enough version of ts-invariant which fixes this issue (at least for me it is working now). I think this issue can be...
Not sure, it seems like Katex is rendering it correctly. Maybe try to put the content in additional `\begin{xyz}...\end{xyz}` environments with `xyz` being something like `equation` or `align` depending on...
This module works for me in nuxt3: ```ts import { addPluginTemplate, defineNuxtModule } from '@nuxt/kit' type Redirect = { from: string; to: string; external?: boolean } // For some reason...