name should default to null

This commit is contained in:
Skylar Sadlier 2022-03-17 14:47:01 -06:00
parent de3c58044f
commit 27dd4d81a2

View File

@ -7,10 +7,10 @@
inputs:1, inputs:1,
outputs:2, outputs:2,
defaults: { defaults: {
name: {value:""}, name: { value: null },
server: { value: "", type: "matrix-server-config" }, server: { value: "", type: "matrix-server-config" },
roomId: { value: null }, roomId: { value: null },
reason: {value:""}, reason: { value: "" },
}, },
label: function() { label: function() {
return this.name||"Delete Event"; return this.name||"Delete Event";