mirror of
https://github.com/AppFlowy-IO/AppFlowy
synced 2026-05-06 06:58:31 +00:00
fix: typo
This commit is contained in:
parent
06d11a91d1
commit
fdbecd7f10
1 changed files with 2 additions and 2 deletions
|
|
@ -146,7 +146,7 @@ extension DeltaAttributesExtensions on Attributes {
|
|||
return null;
|
||||
}
|
||||
|
||||
Color? get hightlightColor {
|
||||
Color? get highlightColor {
|
||||
if (containsKey(StyleKey.highlightColor) &&
|
||||
this[StyleKey.highlightColor] is String) {
|
||||
return Color(
|
||||
|
|
@ -228,7 +228,7 @@ class RichTextStyle {
|
|||
}
|
||||
|
||||
Color get backgroundColor {
|
||||
return attributes.hightlightColor ?? Colors.transparent;
|
||||
return attributes.highlightColor ?? Colors.transparent;
|
||||
}
|
||||
|
||||
// font size
|
||||
|
|
|
|||
Loading…
Reference in a new issue