Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ https://platform.openai.com/docs/overview
①ホーム画面右上の「Personal」から「View API keys」をクリックします。
②「+Create new secret key」をクリックします。
③「Create secret key」をクリックします。
④生成されたURLを、緑のボタンをクリックしてコピー
④生成されたURLを、緑のボタンをクリックしてコピー

4 changes: 2 additions & 2 deletions displayNotice.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

kintone.events.on('portal.show', function() {

var body = {
var bdy = {
'app': 698,
'query': '日付 >= TODAY() order by 日付 asc, $id asc',
'fields': ['$id', '日付', 'イベント名']
Expand All @@ -14,7 +14,7 @@
var noticeSpace = $('<ul>', {
}).appendTo('.notice');

for (var i = 0; i < 10; i++) {
fo (var i = 0; i < 10; i++) {
$('<li>' + resp.records[i].日付.value + '</br>'
+ resp.records[i].イベント名.value + '</li>').appendTo(noticeSpace);
}
Expand Down