Skip to content

Commit

Permalink
#1728 visUpublisert - defaultvalue = 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Terje Olsøybakk committed Oct 14, 2021
1 parent 6a0d612 commit 795ce1f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/AppSettings/AppFunksjoner/fetchMeta.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ export default function fetchMeta(location, place) {
}

function filterUnreleased(kart) {
const visUpublisert = parseInt(localStorage.visUpublisert) || 0;
// const visUpublisert = parseInt(localStorage.visUpublisert) || 0;
const visUpublisert = parseInt(localStorage.visUpublisert) || 2;
const kf = {};
Object.keys(kart.format).forEach((fkey) => {
const format = kart.format[fkey];
Expand Down

0 comments on commit 795ce1f

Please sign in to comment.