File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
java/ru/mystamps/web/feature/site Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -74,8 +74,15 @@ class SeriesSaleImportForm extends React.Component {
7474 document . getElementById ( 'date' ) . value = today ;
7575
7676 document . getElementById ( 'url' ) . value = this . state . url ;
77- document . getElementById ( 'price' ) . value = data . price ;
78- document . getElementById ( 'currency' ) . value = data . currency ;
77+
78+ if ( data . price ) {
79+ document . getElementById ( 'price' ) . value = data . price ;
80+ }
81+
82+ if ( data . currency ) {
83+ document . getElementById ( 'currency' ) . value = data . currency ;
84+ }
85+
7986 if ( data . sellerId ) {
8087 document . getElementById ( 'seller' ) . value = data . sellerId ;
8188 }
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public final class ResourceUrl {
3232 public static final String STATIC_RESOURCES_URL = "https://stamps.filezz.ru" ;
3333
3434 // MUST be updated when any of our resources were modified
35- public static final String RESOURCES_VERSION = "v0.4.2" ;
35+ public static final String RESOURCES_VERSION = "v0.4.2.1 " ;
3636
3737 // CheckStyle: ignore LineLength for next 10 lines
3838 private static final String CATALOG_UTILS_JS = "/public/js/" + RESOURCES_VERSION + "/CatalogUtils.min.js" ;
You can’t perform that action at this time.
0 commit comments