@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix "TypeError: typeahead.updatePlaceHolder is not a function" in global search

Summary:
Misspelled JS function names create JS error output.

Closes T16140

Test Plan: Open browser console, enter a search term into the global search field in the upper right corner, press Enter key.

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T16140

Differential Revision: https://we.phorge.it/D26125

+15 -15
+14 -14
resources/celerity/map.php
··· 10 10 'conpherence.pkg.css' => '384ce2d9', 11 11 'conpherence.pkg.js' => '020aebcf', 12 12 'core.pkg.css' => '1161c9ea', 13 - 'core.pkg.js' => '63f896ec', 13 + 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '4c951b31', 16 16 'differential.pkg.js' => '46fcb3af', ··· 479 479 'rsrc/js/core/behavior-reorder-applications.js' => 'aa371860', 480 480 'rsrc/js/core/behavior-reveal-content.js' => 'b105a3a6', 481 481 'rsrc/js/core/behavior-scrollbar.js' => '92388bae', 482 - 'rsrc/js/core/behavior-search-typeahead.js' => '1cb7d027', 482 + 'rsrc/js/core/behavior-search-typeahead.js' => 'f782e983', 483 483 'rsrc/js/core/behavior-select-content.js' => 'c538cbfc', 484 484 'rsrc/js/core/behavior-select-on-click.js' => '66365ee2', 485 485 'rsrc/js/core/behavior-setup-check-https.js' => '01384686', ··· 633 633 'javelin-behavior-phabricator-oncopy' => 'da8f5259', 634 634 'javelin-behavior-phabricator-remarkup-assist' => 'daceb29a', 635 635 'javelin-behavior-phabricator-reveal-content' => 'b105a3a6', 636 - 'javelin-behavior-phabricator-search-typeahead' => '1cb7d027', 636 + 'javelin-behavior-phabricator-search-typeahead' => 'f782e983', 637 637 'javelin-behavior-phabricator-show-older-transactions' => '8b5c7d65', 638 638 'javelin-behavior-phabricator-tooltips' => '73ecc1f8', 639 639 'javelin-behavior-phabricator-transaction-comment-form' => '2bdadf1a', ··· 1041 1041 'javelin-uri', 1042 1042 'javelin-mask', 1043 1043 'phabricator-drag-and-drop-file-upload', 1044 - ), 1045 - '1cb7d027' => array( 1046 - 'javelin-behavior', 1047 - 'javelin-typeahead-ondemand-source', 1048 - 'javelin-typeahead', 1049 - 'javelin-dom', 1050 - 'javelin-uri', 1051 - 'javelin-util', 1052 - 'javelin-stratcom', 1053 - 'phabricator-prefab', 1054 - 'phuix-icon-view', 1055 1044 ), 1056 1045 '1e413dc9' => array( 1057 1046 'javelin-behavior', ··· 2155 2144 'javelin-install', 2156 2145 'javelin-dom', 2157 2146 'javelin-vector', 2147 + ), 2148 + 'f782e983' => array( 2149 + 'javelin-behavior', 2150 + 'javelin-typeahead-ondemand-source', 2151 + 'javelin-typeahead', 2152 + 'javelin-dom', 2153 + 'javelin-uri', 2154 + 'javelin-util', 2155 + 'javelin-stratcom', 2156 + 'phabricator-prefab', 2157 + 'phuix-icon-view', 2158 2158 ), 2159 2159 'f84bcbf4' => array( 2160 2160 'javelin-behavior',
+1 -1
webroot/rsrc/js/core/behavior-search-typeahead.js
··· 142 142 143 143 JX.DOM.listen(JX.$(config.button), 'click', null, function () { 144 144 typeahead.setPlaceholder(''); 145 - typeahead.updatePlaceHolder(); 145 + typeahead.updatePlaceholder(); 146 146 }); 147 147 148 148