mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-25 06:18:45 +08:00
feat(editor): unify block props api (#10888)
Closes: [BS-2707](https://linear.app/affine-design/issue/BS-2707/统一使用props获取和更新block-prop)
This commit is contained in:
@@ -121,12 +121,12 @@ export class BlockCaptionEditor<
|
||||
override connectedCallback(): void {
|
||||
super.connectedCallback();
|
||||
|
||||
this.caption = this.model.caption;
|
||||
this.caption = this.model.props.caption;
|
||||
|
||||
this.disposables.add(
|
||||
this.model.propsUpdated.subscribe(({ key }) => {
|
||||
if (key === 'caption') {
|
||||
this.caption = this.model.caption;
|
||||
this.caption = this.model.props.caption;
|
||||
if (!this._focus) {
|
||||
this.display = !!this.caption?.length;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user