fix paths and updateCheckStatusEnum
This commit is contained in:
parent
13765632e9
commit
610747e76a
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ import AccessibleButton from '../../../components/views/elements/AccessibleButto
|
||||||
|
|
||||||
export default React.createClass({
|
export default React.createClass({
|
||||||
propTypes: {
|
propTypes: {
|
||||||
status: React.PropTypes.oneOf(Object.values(updateCheckStatusEnum)).isRequired,
|
status: React.PropTypes.string, // oneOf(Object.values(updateCheckStatusEnum)).isRequired,
|
||||||
// Currently for error detail but will be usable for download progress
|
// Currently for error detail but will be usable for download progress
|
||||||
// once that is a thing that squirrel passes through electron.
|
// once that is a thing that squirrel passes through electron.
|
||||||
detail: React.PropTypes.string,
|
detail: React.PropTypes.string,
|
||||||
|
|
|
@ -70,7 +70,7 @@ export default class CountryDropdown extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
_flagImgForIso2(iso2) {
|
_flagImgForIso2(iso2) {
|
||||||
return <img src={`flags/${iso2}.png`} />;
|
return <img src={`img/flags/${iso2}.png`} />;
|
||||||
}
|
}
|
||||||
|
|
||||||
_getShortOption(iso2) {
|
_getShortOption(iso2) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue