mirror of
https://github.com/mue/mue.git
synced 2026-07-27 10:41:08 +02:00
fix: don't set location to "N/A"
This commit is contained in:
@@ -293,7 +293,7 @@ export default class Background extends PureComponent {
|
|||||||
photoInfo: {
|
photoInfo: {
|
||||||
hidden: false,
|
hidden: false,
|
||||||
credit: randomPhoto.photographer,
|
credit: randomPhoto.photographer,
|
||||||
location: randomPhoto.location || 'N/A',
|
location: randomPhoto.location,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -313,7 +313,7 @@ export default class Background extends PureComponent {
|
|||||||
photoInfo: {
|
photoInfo: {
|
||||||
hidden: false,
|
hidden: false,
|
||||||
credit: randomPhoto.photographer,
|
credit: randomPhoto.photographer,
|
||||||
location: randomPhoto.location || 'N/A',
|
location: randomPhoto.location,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
@@ -328,7 +328,7 @@ export default class Background extends PureComponent {
|
|||||||
photoInfo: {
|
photoInfo: {
|
||||||
hidden: false,
|
hidden: false,
|
||||||
credit: randomPhoto.photographer,
|
credit: randomPhoto.photographer,
|
||||||
location: randomPhoto.location || 'N/A',
|
location: randomPhoto.location,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user