Member Export now done

This commit is contained in:
2026-02-26 18:19:40 -07:00
parent 344562c55c
commit 9dc4dd2ec4
5 changed files with 159 additions and 152 deletions
+2 -5
View File
@@ -23,6 +23,7 @@ import (
"git.erbosoft.com/amy/amsterdam/config"
"git.erbosoft.com/amy/amsterdam/database"
"git.erbosoft.com/amy/amsterdam/util"
"gopkg.in/yaml.v3"
)
@@ -212,11 +213,7 @@ func (fld *DialogItem) ValPtr() *string {
// SetVal sets the value of a field from a string pointer.
func (fld *DialogItem) SetVal(p *string) {
if p == nil {
fld.Value = ""
} else {
fld.Value = *p
}
fld.Value = util.SRef(p)
}
// SetInt sets the value of a field to an integer.