Compare commits

..

4 Commits

Author SHA1 Message Date
Dot.L bd64c39882 Merge pull request #37 from Dot-Liu/main
修复_commit表和_latest表初始化失败的问题
2024-09-06 10:37:04 +08:00
Liujian 1a856a917e 修复_commit表和_latest表初始化失败的问题 2024-09-06 10:32:54 +08:00
maggieyyy c1275c4033 Merge pull request #35 from maggieyyy/main
frontend: fix router list view
2024-09-03 10:07:27 +08:00
maggieyyy f00e909a64 frontend: fix router list view 2024-09-03 10:06:19 +08:00
3 changed files with 2 additions and 2 deletions
@@ -209,7 +209,7 @@ const SystemInsideRouterList:FC = ()=>{
onChange={() => {
setTableHttpReload(false)
}}
onRowClick={(row:SystemApiTableListItem)=>openDrawer('view',row)}
onRowClick={(row:SystemApiTableListItem)=>openDrawer('edit',row)}
tableClass="mr-PAGE_INSIDE_X "
/>
<DrawerWithFooter
-1
View File
@@ -47,5 +47,4 @@ func init() {
commit.InitCommitWithKeyService[Proxy]("api", string(HistoryProxy))
commit.InitCommitWithKeyService[Request]("api", string(HistoryRequest))
}
+1
View File
@@ -22,6 +22,7 @@ type StoreWidthType[H any] struct {
func NewCommitWithKey[H any](name, key string) *StoreWidthType[H] {
return &StoreWidthType[H]{
Store: Store[H]{
name: name,
latestTableName: name + "_latest",
commitTableName: name + "_commit",
},