Browse Source

bugfix for AdminUpdateButtonRow

Yuki Takei 6 months ago
parent
commit
d379659f75
1 changed files with 1 additions and 1 deletions
  1. 1 1
      apps/app/src/client/components/Admin/App/FileUploadSetting.tsx

+ 1 - 1
apps/app/src/client/components/Admin/App/FileUploadSetting.tsx

@@ -337,7 +337,7 @@ const FileUploadSetting = (props: FileUploadSettingProps): JSX.Element => {
         onChangeAzureStorageAccountName={onChangeAzureStorageAccountNameHandler}
         onChangeAzureStorageAccountName={onChangeAzureStorageAccountNameHandler}
         onChangeAzureStorageContainerName={onChangeAzureStorageContainerNameHandler}
         onChangeAzureStorageContainerName={onChangeAzureStorageContainerNameHandler}
       />
       />
-      <AdminUpdateButtonRow disabled={retrieveError != null} />
+      <AdminUpdateButtonRow type="submit" disabled={retrieveError != null} />
     </form>
     </form>
   );
   );
 };
 };