Skip to content

Commit

Permalink
type and image fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
sapayth committed Oct 22, 2024
1 parent 6607241 commit ab3ce2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<textarea
v-if="'no' === field.rich"
:placeholder="field.placeholder"
:deault="field.default"
:default="field.default"
:rows="field.rows"
:cols="field.cols"
:class="class_names('textareafield')"
Expand Down
2 changes: 1 addition & 1 deletion admin/form-builder/views/form-builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
class="wpuf-w-[calc(100%+20px)] wpuf-ml-[-20px] wpuf-form-builder-<?php echo esc_attr( $form_type ); ?>" method="post" action="" @submit.prevent="save_form_builder" v-cloak>
<div class="wpuf-flex wpuf-bg-white wpuf-px-[20px] wpuf-pt-4 wpuf-justify-between wpuf-items-center wpuf-border-b wpuf-border-slate-200 wpuf-pb-4">
<div class="wpuf-flex">
<img src="https://wpuf.test/wp-content/plugins/wp-user-frontend/assets/images/wpuf-icon-circle.svg" alt="WPUF Icon" class="wpuf-w-12 wpuf-mr-4">
<img src="<?php echo WPUF_ASSET_URI . '/images/wpuf-icon-circle.svg'; ?>" alt="WPUF Icon" class="wpuf-w-12 wpuf-mr-4">
<nav class="wpuf-flex wpuf-space-x-8 wpuf-items-center" aria-label="Tabs">
<div class="wpuf-relative wpuf-flex">
<div
Expand Down
2 changes: 1 addition & 1 deletion assets/js-templates/form-components.php
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ class="wpuf-block wpuf-w-full wpuf-rounded-md wpuf-border-0 wpuf-py-1.5 wpuf-tex
<textarea
v-if="'no' === field.rich"
:placeholder="field.placeholder"
:deault="field.default"
:default="field.default"
:rows="field.rows"
:cols="field.cols"
:class="class_names('textareafield')"
Expand Down

0 comments on commit ab3ce2c

Please sign in to comment.