Lauri Timmanee
Lauri Timmanee
I think we have 2 main audiences for Drupalcores: 1. New people who like to get respect in some format and be part of something i.e. on a list of...
Since Drupal.org has started collecting the contribution information for nodes, we could use that data through json api.
It would be nice if it would be possible to search users by their name. This is a very minor issue because people can still use browsers search but it...
I'm not sure if this is won't fix since this is kind of a weird edge case. We have following code in our project which I think should fulfill the...
I'm getting following exception fairly consistently when visiting any of the node pages: ``` Drupal\Core\Database\DatabaseExceptionWrapper: SQLSTATE[HY000]: General error: 5 database is locked: INSERT INTO "oauth2_token" ("bundle", "uuid", "auth_user_id", "client", "value",...
The Next.js entity preview feature is really powerful! It would be really useful to be able to do something similar with Next.js static paths. For example, I have a static...
At the moment, updating Next.js entity types is not clearing any caches when configuration is updated. This means that if any of the entity pages are cached, the cached version...
The current revalidation logic in _next_extras_ has some potential scalability issues since it's using paths for revalidating pages. It's complex to use this approach with lists and entity references since...
According to [W3C reference](https://www.w3.org/TR/css-variables-1/#syntax), custom properties can be overridden by more specific selectors. Example: ``` :root { --color: black; } div { --color: red; color: var(--color); } ``` Expected: ```...