Jacob Wodzyński

Results 244 comments of Jacob Wodzyński

# The proposed solution ## Before ![image](https://user-images.githubusercontent.com/110222/189109634-4648c124-1eae-470f-b4ed-334f89d14710.png) ## After ![Skärmavbild 2022-09-08 kl 13 20 09](https://user-images.githubusercontent.com/110222/189109559-9b5917f4-b9dc-402a-9ab8-c7e47da4879b.png) ## Affects only search sources with specified secondary label It makes no changes to the...

One more addition upcoming: Admin UI needs a new field so we can add this to both WFS sources as well as WMS-as-WFS-sources. This will be new: ![image](https://user-images.githubusercontent.com/110222/189132633-1f6cc9d9-b389-4f2d-a1a2-5c7d36e95018.png)

Absolutely. But you are aware of that the implication of this is that the process must be launched from a directory that actually contains `public`? ```bash jw@abc ~ % node...

Absolutely, go ahead @ChiragSharma0208, thanks!

Take a look inside `new-client/src/plugins/Coordinates`, there you'll find `CoordinatesView.js`.

Absolutely @ChiragSharma0208, I'll have a look at this this week. Thanks for your patience!

I've done some tests, one very simple in `FeatureInfo.js` that allows user to browse through infoclick results using keyboard arrows. It's implemented roughly like this: ```javascript componentDidMount() { […] //...

Looks like it can be solved by properly pointing to the directory (using trailing slash). ![Skärmavbild 2024-04-09 kl 11 01 43](https://github.com/hajkmap/Hajk/assets/110222/bd572b4a-ac74-4f65-874a-8dfc72846c7e)

I guess `tocChapterLevels` ends up as `100` because the expression evaluates to it if `chapterLevelsToShow` is `0`. Try using the [nullish coalescing operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing). ```js > 0 || 100 < 100...