Skip to content

Commit dc68a6a

Browse files
committed
up
1 parent c589d9d commit dc68a6a

5 files changed

Lines changed: 6 additions & 10 deletions

File tree

documentation/components/SearchButtonComponent.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ <h3 id="inputs">
698698
* - Displays the global loader for a short duration.
699699
*/
700700
onSearch(): void {
701-
console.log(&#x27;Child emitting search query:&#x27;, this.query);
701+
// console.log(&#x27;Child emitting search query:&#x27;, this.query);
702702
this.search.emit(this.query);
703703
this.searchInput?.nativeElement.blur();
704704
this.globalLoaderService.show(&#x27;Searching...&#x27;);

documentation/injectables/ConfigService.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -398,8 +398,8 @@ <h3 id="methods">
398398

399399
<tr>
400400
<td class="col-md-4">
401-
<div class="io-line">Defined in <a href="" data-line="125"
402-
class="link-to-prism">src/app/service/config/config.service.ts:125</a></div>
401+
<div class="io-line">Defined in <a href="" data-line="123"
402+
class="link-to-prism">src/app/service/config/config.service.ts:123</a></div>
403403
</td>
404404
</tr>
405405

@@ -829,8 +829,6 @@ <h3 id="inputs">
829829

830830
// 3. Combine into ISO-like string (local time)
831831
const localISOString &#x3D; &#x60;${year}-${month}-${day}T${hours}:${minutes}:${seconds}.${milliseconds}&#x60;;
832-
833-
console.log(localISOString); // e.g. &quot;2025-10-11T13:35:58.942&quot;
834832
return localISOString;
835833
}
836834

documentation/js/search/search_index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/component/search-button/search-button.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class SearchButtonComponent {
6868
* - Displays the global loader for a short duration.
6969
*/
7070
onSearch(): void {
71-
console.log('Child emitting search query:', this.query);
71+
// console.log('Child emitting search query:', this.query);
7272
this.search.emit(this.query);
7373
this.searchInput?.nativeElement.blur();
7474
this.globalLoaderService.show('Searching...');

src/app/service/config/config.service.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,6 @@ export class ConfigService {
114114

115115
// 3. Combine into ISO-like string (local time)
116116
const localISOString = `${year}-${month}-${day}T${hours}:${minutes}:${seconds}.${milliseconds}`;
117-
118-
console.log(localISOString); // e.g. "2025-10-11T13:35:58.942"
119117
return localISOString;
120118
}
121119

0 commit comments

Comments
 (0)