mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-04 06:57:20 +01:00
remove colons after input name
This commit is contained in:
@@ -3,7 +3,7 @@ import { h } from 'preact';
|
|||||||
export default function(props) {
|
export default function(props) {
|
||||||
return (
|
return (
|
||||||
<label>
|
<label>
|
||||||
{props.text}:
|
{props.text}
|
||||||
<input
|
<input
|
||||||
class={props.name}
|
class={props.name}
|
||||||
type="text"
|
type="text"
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ export default (props) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<label>
|
<label>
|
||||||
{props.text}:
|
{props.text}
|
||||||
<select
|
<select
|
||||||
class={props.name}
|
class={props.name}
|
||||||
onchange={props.onchange.bind(null, props.name)}
|
onchange={props.onchange.bind(null, props.name)}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import { h } from 'preact';
|
|||||||
export default function(props) {
|
export default function(props) {
|
||||||
return (
|
return (
|
||||||
<label>
|
<label>
|
||||||
{props.text}:
|
{props.text}
|
||||||
<textarea
|
<textarea
|
||||||
class={props.name}
|
class={props.name}
|
||||||
placeholder={props.placeholder}
|
placeholder={props.placeholder}
|
||||||
|
|||||||
Reference in New Issue
Block a user