File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -109,9 +109,11 @@ class _WebsiteViewState extends State<WebsiteView> {
109
109
.snakeCase;
110
110
}
111
111
112
- Website _buildWebsite () => Website (
112
+ Website _buildWebsite () =>
113
+ Website (
113
114
id: _buildId (),
114
- ownerUid: _user? .uid,
115
+ ownerUid:
116
+ widget.website != null ? widget.website.ownerUid : _user? .uid,
115
117
isPrivate: _onlyMeController.isSelected ?? true ,
116
118
label: _labelController.text,
117
119
link: _linkController.text,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ description: A mobile application for students at ACS UPB.
11
11
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
12
12
# Read more about iOS versioning at
13
13
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
14
- version : 0.4.2+2
14
+ version : 0.4.2+3
15
15
16
16
environment :
17
17
sdk : " >=2.6.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments