-
Notifications
You must be signed in to change notification settings - Fork 851
[AI image] fix styling issues #28380
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
2786739
[not verified] Fix textarea's width
millerf aece91f
[not verified] Add changelog
millerf e173e9c
[not verified] Small refactor
millerf 0032669
[not verified] Wrap results
millerf 5535181
[not verified] Small refactor. Saves image in a separate function and…
millerf 21298ee
[not verified] DOM cleanup
millerf 02460d7
Fix small bug
millerf 843c914
Bigger textarea
millerf 8adae4f
Better Flex handling. Add modal
millerf c882bd5
Fix build and text
millerf 0d87c56
Add button to modal
millerf e19b49e
Merge remote-tracking branch 'origin/trunk' into fix/ai-styling--issues
jeherve File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Bigger textarea
- Loading branch information
commit 843c914b93a1a6bc50f7e47e7f022a817ce38839
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is breaking the build I'm afraid:
The building tooling doesn't seem to like the translations in a ternary like that, so I would recommend moving them out of there, maybe like so (it's not as pretty, but it does seem to build):
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Funny I didn't see any issue when building 🤔
While you are here. Another question. My building keeps breaking until I do a
composer updateinprojects/plugins/jetpack. Don't you push the newcomposer.lock?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see. You're talking about the GH actions build...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See discussion in #28285
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! I didn't see those!
So it looks like an issue with the PHP version?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. We get no build errors when doing a dev build locally with
jetpack build plugins/jetpack.Yup, looks like it. You would need to update to PHP 8.0. Although in the case of this PR, you shouldn't have to run any kind of
composercommands really, since you're not making any changes to composer packages. You should be able to build and update the blocks in your PRs withjetpack build plugins/jetpackandjetpack watch plugins/jetpack. I don't believe you need any other build commands at the moment. Maybejetpack rsyncto test on WordPress.com simple or WoA.