mirror of
https://github.com/mue/mue.git
synced 2026-06-11 19:18:57 +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: {
|
||||
hidden: false,
|
||||
credit: randomPhoto.photographer,
|
||||
location: randomPhoto.location || 'N/A',
|
||||
location: randomPhoto.location,
|
||||
},
|
||||
});
|
||||
}
|
||||
@@ -313,7 +313,7 @@ export default class Background extends PureComponent {
|
||||
photoInfo: {
|
||||
hidden: false,
|
||||
credit: randomPhoto.photographer,
|
||||
location: randomPhoto.location || 'N/A',
|
||||
location: randomPhoto.location,
|
||||
},
|
||||
});
|
||||
} else {
|
||||
@@ -328,7 +328,7 @@ export default class Background extends PureComponent {
|
||||
photoInfo: {
|
||||
hidden: false,
|
||||
credit: randomPhoto.photographer,
|
||||
location: randomPhoto.location || 'N/A',
|
||||
location: randomPhoto.location,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user