a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix double click issue w/ alt text

+12 -2
+12 -2
components/Blocks/ImageBlock.tsx
··· 177 177 <div className="absolute bottom-0 right-2 h-max"> 178 178 <Popover 179 179 open={altEditorOpen} 180 - onOpenChange={(o) => setAltEditorOpen(o ? props.entityID : null)} 181 180 className="text-sm max-w-xs min-w-0" 182 181 side="left" 183 - trigger={<ImageAltSmall fillColor={theme.colors["bg-page"]} />} 182 + asChild 183 + trigger={ 184 + <button 185 + onClick={() => 186 + setAltEditorOpen(altEditorOpen ? null : props.entityID) 187 + } 188 + > 189 + <ImageAltSmall 190 + fillColor={theme.colors["bg-page"]} 191 + /> 192 + </button> 193 + } 184 194 > 185 195 {entity_set.permissions.write ? ( 186 196 <AsyncValueAutosizeTextarea