Skip to content

Commit 12294ae

Browse files
committed
Format
1 parent e79ad8a commit 12294ae

File tree

5 files changed

+9
-12
lines changed

5 files changed

+9
-12
lines changed

components/filter.templ

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package components
22

3-
import (
4-
"github.com/Piszmog/pathwise/types"
5-
)
3+
import "github.com/Piszmog/pathwise/types"
64

75
templ filterForm() {
86
<script type="text/javascript">

components/jobs.templ

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
package components
22

33
import (
4-
"strconv"
5-
64
"github.com/Piszmog/pathwise/types"
75
"github.com/Piszmog/pathwise/utils"
6+
"strconv"
87
)
98

109
templ loadingJobs() {
@@ -179,7 +178,7 @@ templ jobApplicationForm() {
179178
slideOver.classList.toggle('translate-x-full');
180179
overlay.classList.toggle('hidden');
181180
}
182-
</script>
181+
</script>
183182
<form
184183
id="new-job-form"
185184
hx-post="/jobs"

components/note.templ

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package components
22

3-
import (
4-
"strconv"
5-
)
3+
import "strconv"
64

75
templ note(id int64) {
86
<form

components/pagination.templ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package components
22

33
import (
4-
"strconv"
54
"github.com/Piszmog/pathwise/types"
65
"github.com/Piszmog/pathwise/utils"
6+
"strconv"
77
)
88

99
templ pagination(paginationOpts types.PaginationOpts, filterOpts types.FilterOpts) {

components/stats.templ

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
package components
22

3-
import "github.com/Piszmog/pathwise/types"
4-
import "strconv"
3+
import (
4+
"github.com/Piszmog/pathwise/types"
5+
"strconv"
6+
)
57

68
templ loadingStats() {
79
<div hx-get="/stats" hx-trigger="load">

0 commit comments

Comments
 (0)