debug
This commit is contained in:
parent
058633742e
commit
313ef43e9c
@ -587,7 +587,6 @@ class WorkspaceSharedItemPageWidgetState extends State<WorkspaceSharedItemPageWi
|
||||
await PeerService().all(context).then((value) {
|
||||
if (value.data != null) {
|
||||
shals = value.data!.values.where( (e) {
|
||||
print("e: $e ${e["id"]} ${current?.creatorID}");
|
||||
return e["id"] != current?.creatorID;
|
||||
}
|
||||
).map((e) => Shallow(id: e["id"], name: e["name"])).toList();
|
||||
|
@ -98,7 +98,6 @@ class ShallowDropdownInputWidgetState extends State<ShallowDropdownInputWidget>
|
||||
child:InkWell(
|
||||
mouseCursor: SystemMouseCursors.click,
|
||||
onTap: () async {
|
||||
print("load ${widget.current}");
|
||||
if (widget.canLoad == null || !widget.canLoad!(widget.current)
|
||||
|| widget.load == null || widget.current == null) {
|
||||
return;
|
||||
|
@ -301,7 +301,7 @@ class Dashboard extends ChangeNotifier {
|
||||
try {
|
||||
var element = elements.firstWhere((element) => element.id == id);
|
||||
element.element?.addEnv(elInfos[id] ?? []);
|
||||
} catch (e) { print("THERE ??? ${id} ${e}"); }
|
||||
} catch (e) { /* */ }
|
||||
}
|
||||
for(var ar in graph['graph']['arrows']) {
|
||||
var arr = arrows.where((a) => a.fromID == ar['from']['id'] && a.toID == ar['to']['id']).toList();
|
||||
|
Loading…
Reference in New Issue
Block a user