jeromecc

Results 40 comments of jeromecc

Users shouldn't be able to edit user rights. Only admins should be granted this permission.

Let's use standard QSplitter class instead of the custom Utils::MiniSplitter. - decomplect the code - Some non geek users can't tell there is a splitter if it's too thin. -...

Hi @Guid75 @larramendi @Maxwell1858 ! Just to let you know about FreeHealth EHR... Thanks.

QVariant PmhTokens::value() const { QString token; switch (d->_type) { case HtmlOutput:{ token = d->_model->synthesis(); break; } case PlainTextOutput:{ QTextDocument doc; doc.setHtml(d->_model->synthesis()); token = doc.toPlainText(); break; } } return token; }

After deleting user X, remaining users and admins cannot know who authored the episodes created by X. Let's fix this.

I found the possibility to bound the map with an array of coordinates in the "fly to" example. https://github.com/dimfeld/svelte-maplibre/blob/23d4bd2c4bb06033fa0da71cb8d41765d77ac2f0/src/routes/examples/controls/%2Bpage.svelte#L49 ``` map.fitBounds([ [-120, 50], [-70, 20], ])} ``` This is linked...

Thanks for the tips. I tried to adapt your code but I get an error when I try to get the map context: `TypeError: Cannot destructure property 'map' of '(0...

"Solved" by adding ``` export const ssr = false; export const csr = true; ``` In +page.js

I'm not sure the issue is solved. Here is how I made it work: ``` import { bbox } from "@turf/bbox"; import { lineString } from "@turf/helpers"; import { MapLibre,...

The script you provided to generate this password hash does not work. ``` docker run ghcr.io/wg-easy/wg-easy wgpw 'mypassword' Error: Cannot find module '/app/wgpw' at Module._resolveFilename (node:internal/modules/cjs/loader:1145:15) at Module._load (node:internal/modules/cjs/loader:986:27) at...