fullstack-lang/gongfly

Probe's Front stack names do not match back end probe stack names

Closed this issue · 0 comments

In the back end

"gongfly-table"
"gongfly-form"
"gongleaflet-table"
"gongleaflet-form"
"gongsim-table"
"gongsim-form".

in the front end

"gongfly-probe-table"

in the main.go

stack := gongfly_stack.NewStack(r, gongfly_models.GongflyStackName.ToString(), *unmarshallFromCode, *marshallOnCommit, "", *embeddedDiagrams, true)

in app.component.html

                        <lib-material-table TableName="Table" [DataStack]="StackNames.GongflyProbeStacksPrefix+'-table'"></lib-material-table>

export enum StacksNames {
// insertion point
GongflyStackName = "gongfly",
GongLeafleatStackName = "gongleaflet",
GongsimStackName = "gongsim",
GongflyProbeStacksPrefix = "gongfly-probe",
GongsimProbeStacksPrefix = "gongsim-probe",
GongleafletProbeStacksPrefix = "gongleaflet-probe",
}