(prop: dict)
| 55 | return s |
| 56 | |
| 57 | def _editor_badge(prop: dict) -> str: |
| 58 | if prop.get('is_edit_anywhere'): |
| 59 | return '✏️ EditAnywhere' |
| 60 | if prop.get('is_visible_anywhere'): |
| 61 | return '👁 VisibleAnywhere' |
| 62 | return '—' |
| 63 | |
| 64 | def _blueprint_prop_badge(prop: dict) -> str: |
| 65 | if prop.get('is_blueprint_read_write'): |