Elliot Chen

Results 11 comments of Elliot Chen

In my case Just use it like this. ![code](https://user-images.githubusercontent.com/20974778/117124364-d2689380-adca-11eb-92bb-80df5ca2e9f2.png) ![effect](https://user-images.githubusercontent.com/20974778/117125419-16a86380-adcc-11eb-980a-89d4ca584047.gif)

@PromiseMagoma Thanks, it works as expected!! @dorkden Maybe you should pay attention to letter case

According to the discussion on [Pull Request#19] (https://github.com/laravel-admin-extensions/backup/pull/19) Just change **monitor_backups** to **monitorBackups** in the backup config file

i think it might be same issue form [here](https://github.com/jpuri/react-draft-wysiwyg/issues/1165#issuecomment-977698637)

This issue is still happening. (try upgrading from 1.2.3 to 1.7.4 Today)

能否提供repo, 有點難還原問題 但推測是少了 ThemeModule 註冊 可以嘗試調整成下方範例 ``` [DependsOn( typeof(CNAdminAbpApplicationModule), typeof(CNAdminAbpEntityFrameworkCoreModule), typeof(CNAdminAbpHttpApiModule), typeof(AbpAspNetCoreMvcUiBasicThemeModule), // 加入這行試試 typeof(AbpAutofacModule), typeof(AbpSwashbuckleModule), typeof(AbpAspNetCoreSerilogModule), typeof(AbpAccountWebOpenIddictModule), typeof(AbpAspNetCoreComponentsServerAntDesignThemeModule), // typeof(AbpAspNetCoreComponentsWebAntDesignThemeModule), //注释这句结果不变 typeof(AbpIdentityBlazorServerAntDesignModule), typeof(AbpTenantManagementBlazorServerAntDesignModule), typeof(AbpSettingManagementBlazorServerAntDesignModule) )] public class AdminAbpBlazorModule :...

在 [Quick Start](https://github.com/realLiangshiwei/Lsw.Abp.AntDesignUI/tree/main?tab=readme-ov-file#quick-start) 中的使用說明 其實是 WebAssembly 的範例 但是在 Blazor Server 中 應該需要把你上方的 `typeof(AbpAspNetCoreComponentsWebAntDesignThemeModule)` 替換為 `typeof(AbpAspNetCoreComponentsServerAntDesignThemeModule)` 查看 [AbpAspNetCoreComponentsServerAntDesignThemeModule 源代碼](https://github.com/realLiangshiwei/Lsw.Abp.AntDesignUI/blob/main/modules/AntDesignTheme/Lsw.Abp.AspnetCore.Components.Server.AntDesignTheme/AbpAspNetCoreComponentsServerAntDesignThemeModule.cs) 裡面是針對 AbpBundlingOptions 及 AbpToolbarOptions 的 Theme 設定 但參考 [BookStoreBlazorModule](https://github.com/realLiangshiwei/Lsw.Abp.AntDesignUI/blob/main/samples/BookStore/src/BookStore.BlazorServer/BookStoreBlazorModule.cs) 不加入 `typeof(AbpAspNetCoreComponentsServerAntDesignThemeModule)` 理應也能運作...

抱歉, 剛沒有看到原本提供的代碼已有 AbpAspNetCoreComponentsServerAntDesignThemeModule 的引用了 但應不影響問題的修正 若仍發生請提供repo以便偵錯

Sorry for the late reply, I will do this in my spare time.

You can try to do these things: 1. Find [auth.excepts](https://github.com/z-song/laravel-admin/blob/master/config/admin.php#L138) in config/admin.php And add **_'locale'_** . Looks like this ```json 'excepts' => [ 'auth/login', 'auth/logout', 'locale', ], ``` 2. Open...