File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
packages/editor-ui/src/dialogs Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 22
33## 1.119.0 (unreleased)
44
5+ - Visual Editor: "Inset image" command now uses a text box for the alternative text. (< https://github.com/quarto-dev/quarto/pull/599 > )
6+
57## 1.118.0 (Release on 2024-11-26)
68
79- Provide F1 help at cursor in Positron (< https://github.com/quarto-dev/quarto/pull/599 > )
Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ import {
2828 useId ,
2929 RadioGroup ,
3030 Label ,
31- Radio
31+ Radio ,
32+ Textarea
3233} from "@fluentui/react-components" ;
3334
3435import { ModalDialog , ModalDialogTabList , showValueEditorDialog } from "ui-widgets" ;
@@ -162,10 +163,11 @@ const imagePanel =
162163
163164 { alt !== undefined
164165 ? < Field label = { t ( "Alternative text" ) } >
165- < Input
166- value = { alt }
166+ < Textarea
167+ value = { alt }
167168 onChange = { ( _ev , data ) => setAlt ( data . value ) }
168169 placeholder = { t ( "(Optional)" ) }
170+ style = { { height : "100px" } }
169171 />
170172 </ Field >
171173 : null
@@ -288,6 +290,3 @@ const useStyles = makeStyles({
288290 gridRowGap : tokens . spacingVerticalS ,
289291 }
290292} )
291-
292-
293-
You can’t perform that action at this time.
0 commit comments