Skip to content

Commit

Permalink
Merge pull request #337 from ssu-student-union/refactor/#329_board_title
Browse files Browse the repository at this point in the history
Refactor/#329 board title
  • Loading branch information
jongse7 authored Nov 24, 2024
2 parents ee0842c + 9a9aa5a commit ba623d2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,12 @@ dist-ssr

.env
.vercel

# yarn berry
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
Binary file removed .yarn/install-state.gz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function AuditEditTitleSection({

const handleTitleChange = (event: React.ChangeEvent<HTMLInputElement>) => {
const newTitle = event.target.value;
if (newTitle.length <= 50) {
if (newTitle.length <= 80) {
setTitle(newTitle);
onTitleChange(newTitle);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function NoticeEditTitleSection({

const handleTitleChange = (event: React.ChangeEvent<HTMLInputElement>) => {
const newTitle = event.target.value;
if (newTitle.length <= 50) {
if (newTitle.length <= 80) {
setTitle(newTitle);
onTitleChange(newTitle);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function PartnershipEditTitleSection({

const handleTitleChange = (event: React.ChangeEvent<HTMLInputElement>) => {
const newTitle = event.target.value;
if (newTitle.length <= 50) {
if (newTitle.length <= 80) {
setTitle(newTitle);
onTitleChange(newTitle);
}
Expand Down

0 comments on commit ba623d2

Please sign in to comment.