We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wenn in der Datenbank 0 steht wird im UI ein leeres Input angezeigt.
Fix: nullish coalescing operator (??) statt logical OR verwenden.
value={borehole?.topBedrockWeatheredMd || ""} wird zu value={borehole?.topBedrockWeatheredMd ?? ""}
The text was updated successfully, but these errors were encountered:
Bitte generell prüfen, wo dies der Fall ist. Bei Top Fels tritt dies bei der Bohrung: https://dev-boreholes.swissgeol.ch/16519/borehole#general auf. Eintrag DB bei top Fels ist 0, im UX sieht man nichts
Sorry, something went wrong.
Im idealfall im Januar 2025 angehen
MiraGeowerkstatt
Successfully merging a pull request may close this issue.
Wenn in der Datenbank 0 steht wird im UI ein leeres Input angezeigt.
Fix:
nullish coalescing operator (??) statt logical OR verwenden.
value={borehole?.topBedrockWeatheredMd || ""} wird zu
value={borehole?.topBedrockWeatheredMd ?? ""}
The text was updated successfully, but these errors were encountered: