Skip to content

Commit a2b85c7

Browse files
committed
Change default variant from 'normal' to ''
1 parent 5568d9a commit a2b85c7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

blocks/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ macro_rules! define_blocks {
177177
$($fname,)*
178178
} => {
179179
$(return String::from($variant);)*
180-
"normal".to_owned()
180+
//"normal".to_owned()
181+
"".to_owned()
181182
}
182183
)+
183184
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"variants": {
3-
"normal": { "model": "missing_block" }
3+
"": { "model": "missing_block" }
44
}
55
}

0 commit comments

Comments
 (0)