code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/generators/database-changelog-liquibase/templates/src/main/resources/config/liquibase/changelog/updated_entity.xml.ejs b/generators/database-changelog-liquibase/templates/src/main/resources/config/liquibase/changelog/updated_entity.xml.ejs Added columns to the entity <%= entity.entityClass %>.
-->
<changeS... | 2 |
diff --git a/app/shared/electron/updater.js b/app/shared/electron/updater.js @@ -3,6 +3,7 @@ import { autoUpdater } from 'electron-updater';
let updater;
autoUpdater.autoDownload = false;
+autoUpdater.allowPrerelease = true;
autoUpdater.on('error', (error) => {
dialog.showErrorBox('Error: ', error == null ? 'unknown' :... | 11 |
diff --git a/avatars/avatars.js b/avatars/avatars.js @@ -1728,7 +1728,7 @@ class Avatar {
}
}
if (index !== -1) {
- morphTargetInfluences[index] = facepose.value;
+ morphTargetInfluences[index] = facepose.value ?? 1;
}
}
}
| 0 |
diff --git a/shared/graphql/queries/channel/getChannel.js b/shared/graphql/queries/channel/getChannel.js @@ -27,7 +27,7 @@ const getChannelByIdOptions = {
variables: {
id,
},
- fetchPolicy: 'cache-first',
+ fetchPolicy: 'cache-and-network',
}),
};
@@ -62,7 +62,7 @@ const getChannelBySlugAndCommunitySlugOptions = {
chan... | 1 |
diff --git a/renderer/pages/home.js b/renderer/pages/home.js @@ -222,8 +222,6 @@ class Home extends React.Component {
this.setState({
runningTestGroupName: testGroupName
})
- // TODO Remove this before merge. Here only to test the animation
- return
const Runner = remote.require('./utils/ooni/run').Runner
this.runner =... | 2 |
diff --git a/src/Telnet.js b/src/Telnet.js @@ -123,7 +123,9 @@ class TelnetStream extends EventEmitter
databuf.copy(inputbuf, inputlen);
inputlen += databuf.length;
- if (!databuf.toString().match(/[\r\n]/)) {
+ // fresh makes sure that even if we haven't gotten a newline but the client
+ // sent us some initial negoti... | 1 |
diff --git a/src/pages/ReimbursementAccount/CompanyStep.js b/src/pages/ReimbursementAccount/CompanyStep.js @@ -102,7 +102,7 @@ class CompanyStep extends React.Component {
this.getErrorText = inputKey => ReimbursementAccountUtils.getErrorText(this.props, this.errorTranslationKeys, inputKey);
this.clearError = inputKey =... | 10 |
diff --git a/public/index.js b/public/index.js @@ -82,6 +82,9 @@ $(function(){
var selected_locations = store.get('selected_locations') || _.compact(_.map(locations, function(ver,loc){ return ver===1?loc:null }));
+ // force the removal of deleted locations
+ selected_locations = _.without(selected_locations, 'carnival... | 1 |
diff --git a/userscript.user.js b/userscript.user.js @@ -13434,7 +13434,8 @@ var $$IMU_EXPORT$$;
var our_format = available_formats[i];
if (our_format.is_adaptive) {
- //adaptiveformat_to_dash(our_format, adaptionsets);
+ //console_log(our_format, adaptionsets);
+ adaptiveformat_to_dash(our_format, adaptionsets);
} els... | 7 |
diff --git a/assets/js/modules/analytics-4/datastore/api.js b/assets/js/modules/analytics-4/datastore/api.js */
import Data from 'googlesitekit-data';
-const baseInitialState = {};
-const baseActions = {};
-const baseControls = {};
-const baseReducer = ( state, { type } ) => {
- switch ( type ) {
- default: {
- return ... | 2 |
diff --git a/website/js/components/designer/index.vue b/website/js/components/designer/index.vue :id="'qa-'+props.item.qid+'-delete'"
)
template(slot="no-data")
- v-alert( :value="true" color="error" icon="warning")
span Sorry, nothing to display here :(
template(slot="expand" slot-scope='props')
qa(:data="props.item")... | 2 |
diff --git a/src/Webform.js b/src/Webform.js @@ -280,11 +280,11 @@ export default class Webform extends NestedDataComponent {
set language(lang) {
return new NativePromise((resolve, reject) => {
this.options.language = lang;
- if (i18next.language === lang) {
+ if (this.i18next.language === lang) {
return resolve();
}
... | 4 |
diff --git a/admin-base/ui.apps/src/main/content/jcr_root/apps/admin/components/explorer/template.vue b/admin-base/ui.apps/src/main/content/jcr_root/apps/admin/components/explorer/template.vue v-if="publishDialogPath"
:isOpen="publishDialogPath"
:path="publishDialogPath"
- @complete="closePublishing"
- :modalTitle="`We... | 12 |
diff --git a/src/config.js b/src/config.js @@ -59,7 +59,7 @@ const config = {
* </pre>
*/
theme: 'default',
- themeVariables: themes.get,
+ themeVariables: themes['default'].getThemeVariables(),
themeCSS: undefined,
/* **maxTextSize** - The maximum allowed size of the users text diamgram */
maxTextSize: 50000,
| 12 |
diff --git a/mods/ctl/src/commands/apps/deploy.js b/mods/ctl/src/commands/apps/deploy.js @@ -3,6 +3,7 @@ const AppManager = require('@yaps/appmanager')
const prettyjson = require('prettyjson')
const { cli } = require('cli-ux')
const path = require('path')
+const fs = require('fs')
const {Command, flags} = require('@ocl... | 1 |
diff --git a/front/src/actions/profile.js b/front/src/actions/profile.js @@ -175,7 +175,7 @@ function createActions(store) {
});
route('/dashboard/settings/user');
} catch (e) {
- console.log(e);
+ console.error(e);
const status = get(e, 'response.status');
if (status === 409) {
store.setState({
| 14 |
diff --git a/src/core/createOptIn.js b/src/core/createOptIn.js @@ -14,13 +14,13 @@ import { defer } from "../utils";
const COOKIE_NAMESPACE = "optIn";
-// The user has opted into all behaviors.
+// The user has opted into all purposes.
const ALL = "all";
-// The user has opted into no behaviors.
+// The user has opted ... | 10 |
diff --git a/scenes/treehouse.scn b/scenes/treehouse.scn ],
"start_url": "https://webaverse.github.io/treehouse/"
},
+ {
+ "position": [
+ 24,
+ 0,
+ 16
+ ],
+ "quaternion": [
+ 0,
+ 1,
+ 0,
+ 0
+ ],
+ "start_url": "https://webaverse.github.io/ramp/"
+ },
{
"position": [
-6,
| 0 |
diff --git a/metaverse_modules/path/index.js b/metaverse_modules/path/index.js @@ -12,6 +12,8 @@ export default () => {
const {StreetGeometry} = useGeometries();
const {alea} = useProcGen();
+ app.name = 'path';
+
const line = app.getComponent('line') ?? [
[0, 0, 0],
[0, 0, -1],
| 0 |
diff --git a/src/scripts/interactive-video.js b/src/scripts/interactive-video.js @@ -722,7 +722,7 @@ InteractiveVideo.prototype.addSplash = function () {
this.$splash = $(
'<div class="h5p-splash-wrapper">' +
'<div class="h5p-splash-outer">' +
- '<div class="h5p-splash" role="button" tabindex="0">' +
+ '<div class="h5p... | 0 |
diff --git a/types/index.d.ts b/types/index.d.ts @@ -820,7 +820,8 @@ declare namespace math {
* @param node Tree to replace variable nodes in
* @param scope Scope to read/write variables
*/
- resolve<TNode = MathNode>(node: TNode, scope: Record<string, any>): TNode;
+ resolve(node: MathNode, scope?: Record<string, any>... | 7 |
diff --git a/src/service-broker.js b/src/service-broker.js @@ -1011,7 +1011,7 @@ class ServiceBroker {
// Remove the context from the active contexts list
if (ctx.tracked) {
- p.then(res => {
+ p = p.then(res => {
ctx.dispose();
return res;
});
@@ -1048,7 +1048,7 @@ class ServiceBroker {
// Remove the context from the ... | 1 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,13 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.28.1] -- 2017-06-20
+
+### Fixed
+- Fix `scattergl` selected points. Points do not disappear after zoom any more
+ in fast mode [#180... | 3 |
diff --git a/weapons-manager.js b/weapons-manager.js @@ -14,6 +14,7 @@ import {rigManager} from './rig.js';
import {buildMaterial} from './shaders.js';
import {makeTextMesh} from './vr-ui.js';
import activateManager from './activate-manager.js';
+import dropManager from './drop-manager.js';
import {teleportMeshes} from... | 0 |
diff --git a/docs/content/widgets/DateTimeFields.js b/docs/content/widgets/DateTimeFields.js @@ -42,14 +42,16 @@ export const DateTimeFields = <cx>
<div layout={LabelsLeftLayout}>
<DateTimeField label="Time" value:bind="$page.time" segment="time"/>
<TimeField label="Time" value:bind="$page.time" />
+ <TimeField label="... | 0 |
diff --git a/extension/data/tbui.js b/extension/data/tbui.js purifyObject(input[key]);
break;
case 'string':
+ // Let's see if we are dealing with json.
+ // We want to handle json properly otherwise the purify process will mess up things.
+ try {
+ const jsonObject = JSON.parse(input[key]);
+ purifyObject(jsonObject);... | 9 |
diff --git a/core/algorithm-builder/environments/nodejs/wrapper/package.json b/core/algorithm-builder/environments/nodejs/wrapper/package.json "author": "",
"license": "ISC",
"dependencies": {
- "@hkube/nodejs-wrapper": "^2.0.20"
+ "@hkube/nodejs-wrapper": "^2.0.21"
},
"devDependencies": {}
}
\ No newline at end of fil... | 3 |
diff --git a/packages/node_modules/@node-red/nodes/locales/en-US/storage/10-file.html b/packages/node_modules/@node-red/nodes/locales/en-US/storage/10-file.html <dd>The contents of the file as either a string or binary buffer.</dd>
<dt class="optional">filename <span class="property-type">string</span></dt>
<dd>If not ... | 2 |
diff --git a/README.md b/README.md Spearmint helps developers easily create functional React tests without writing any code. It dynamically converts user inputs into executable Jest test code by using DOM query selectors provided by the react-testing-library.
+spearmint is currently under development! We just finished ... | 3 |
diff --git a/src/encoded/schemas/library.json b/src/encoded/schemas/library.json "chemical (generic)",
"chemical (DNaseI)",
"chemical (RNase III)",
+ "chemical (HindIII restriction)",
+ "chemical (MboI restriction)",
+ "chemical (NcoI restriction)",
+ "chemical ('DpnII restriction)",
"chemical (HindIII/DpnII restrictio... | 0 |
diff --git a/src/patterns/fundamentals/layers/base.hbs b/src/patterns/fundamentals/layers/base.hbs @@ -48,9 +48,7 @@ doclayout: true
</td>
<td>
<ul class="drizzle-b-List drizzle-b-List--nested">
- <li>Secondary Navigation (sub-menu)</li>
- <li>Narrow Navigation (open menu)</li>
- <li>Masthead (narrow)</li>
+ <li>Masthe... | 3 |
diff --git a/app/views/main.scala.html b/app/views/main.scala.html <span class="footerheader">CONNECT</span><br/>
<a target="_blank" href="https://github.com/ProjectSidewalk/SidewalkWebpage" id="connect-github-link"><img width="15" src='@routes.Assets.at("assets/github_logo.png")'> Github</a> <br/>
<a target="_bla... | 3 |
diff --git a/packages/react-router-website/modules/api/Installation.md b/packages/react-router-website/modules/api/Installation.md @@ -14,8 +14,8 @@ All of the package modules can be imported from the top:
```js
import {
- BrowserRouter as Router
- StaticRouter // for server rendering
+ BrowserRouter as Router,
+ Stati... | 0 |
diff --git a/per-seat-subscriptions/server/README.md b/per-seat-subscriptions/server/README.md @@ -5,6 +5,7 @@ Pick the language you are most comfortable with and follow the instructions in t
# Supported languages
+- [.NET (.NET 3.1)](dotnet/README.md)
- [Java (Spark)](java/README.md)
- [JavaScript (Node)](node/README.... | 0 |
diff --git a/src/webroutes/diagnostics-log.js b/src/webroutes/diagnostics-log.js @@ -18,9 +18,7 @@ const xss = new xssClass.FilterXSS({
*/
module.exports = async function action(res, req) {
const logHistory = getLog();
- dir(xss.whiteList)
- logError('Soma random error <b>asdASD</b>' + Math.random())
- logError('Soma r... | 2 |
diff --git a/assets/js/modules/tagmanager/setup.js b/assets/js/modules/tagmanager/setup.js @@ -50,7 +50,7 @@ class TagmanagerSetup extends Component {
errorCode: false,
errorMsg: '',
refetch: false,
- selectedAccount: settings.accountID || 0,
+ selectedAccount: settings.accountID,
selectedContainer: settings[ container... | 2 |
diff --git a/packages/vulcan-forms/lib/components/Form.jsx b/packages/vulcan-forms/lib/components/Form.jsx @@ -44,6 +44,7 @@ import isObject from 'lodash/isObject';
import mapValues from 'lodash/mapValues';
import pickBy from 'lodash/pickBy';
import omit from 'lodash/omit';
+import without from 'lodash/without';
import... | 9 |
diff --git a/.github/workflows/e2ePerformanceRegressionTests.yml b/.github/workflows/e2ePerformanceRegressionTests.yml @@ -10,6 +10,11 @@ jobs:
steps:
- uses: Expensify/App/.github/actions/composite/setupNode@main
+ - uses: ruby/setup-ruby@eae47962baca661befdfd24e4d6c34ade04858f7
+ with:
+ ruby-version: '2.7'
+ bundler... | 12 |
diff --git a/app/views/shared/_update_email_activity.html.erb b/app/views/shared/_update_email_activity.html.erb <%- if notifier.is_a?(Identification) %>
<div style="margin-bottom:10px;">
<%= taxon_image(notifier.taxon, :style => "max-width:32px; vertical-align:middle;") %>
- <span><%= t(:user_s_id, :user => user.login... | 14 |
diff --git a/tasks/noci_test.sh b/tasks/noci_test.sh #! /bin/bash
+#
+# Run tests that aren't ran on CI (yet)
+#
+# to run all no-ci tests
+# $ (plotly.js) ./tasks/noci_test.sh
+#
+# to run jasmine no-ci tests
+# $ (plotly.js) ./tasks/noci_test.sh jasmine
+
+# to run image no-ci tests
+# $ (plotly.js) ./tasks/noci_test... | 0 |
diff --git a/token-metadata/0xBA50933C268F567BDC86E1aC131BE072C6B0b71a/metadata.json b/token-metadata/0xBA50933C268F567BDC86E1aC131BE072C6B0b71a/metadata.json "symbol": "ARPA",
"address": "0xBA50933C268F567BDC86E1aC131BE072C6B0b71a",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/src/resources/container.js b/src/resources/container.js @@ -97,7 +97,7 @@ Object.assign(pc, function () {
if (!err) {
pc.GlbParser.parseAsync(self._getUrlWithoutParams(url.original),
- pc.path.extractPath(url.original),
+ pc.path.extractPath(url.load),
response,
self._device,
asset.registry,
| 4 |
diff --git a/docs/source/docs/examples/buttons.blade.md b/docs/source/docs/examples/buttons.blade.md @@ -81,7 +81,7 @@ description: null
### Elevated
@component('_partials.code-sample', ['lang' => 'html', 'class' => 'text-center'])
-<button class="bg-white hover:bg-smoke-lighter text-slate-dark font-semibold py-2 px-4 ... | 2 |
diff --git a/src/patterns/components/alerts/collection.yaml b/src/patterns/components/alerts/collection.yaml @@ -14,24 +14,45 @@ restrictions:
has a unique data-id property ("alert-info-1", "alert-info-2", "alert-info-1", etc).
sparkPackageCore: true
variableTable:
+ $sprk-alert-border-radius:
+ default: 4px
+ descript... | 3 |
diff --git a/README.md b/README.md -## Hack OR Front-End Starter
+## Emergency Response Front-end
+
+[](https://travis-ci.org/hackoregon/emergency-response-frontend)
This is a starter kit for Hack Oregon front-end development... | 3 |
diff --git a/lib/natural/classifiers/classifier.js b/lib/natural/classifiers/classifier.js @@ -58,7 +58,7 @@ function addDocument(text, classification) {
}
if(typeof text === 'string')
- text = this.stemmer.tokenizeAndStem(text);
+ text = this.stemmer.tokenizeAndStem(text, this.keepStops);
if(text.length === 0) {
// ig... | 11 |
diff --git a/lib/cartodb/controllers/map.js b/lib/cartodb/controllers/map.js @@ -61,9 +61,9 @@ MapController.prototype.register = function(app) {
includeQuery: true
}),
respond,
- mapErrorMiddleware({
+ augmentError({
label: 'ANONYMOUS LAYERGROUP',
- augmentError: true
+ addContext: true
})
);
app.post(
@@ -78,9 +78,9 ... | 10 |
diff --git a/bin/data-migrations/v6/migration.js b/bin/data-migrations/v6/migration.js @@ -25,10 +25,10 @@ function csvProcessor(body) {
return body.replace(oldCsvTableRegExp, '``` csv$1\n$2\n```');
}
-function pagelinkProcessor(body) {
+function bracketlinkProcessor(body) {
// https://regex101.com/r/btZ4hc/1
- var old... | 10 |
diff --git a/scenes/SceneWallet.js b/scenes/SceneWallet.js @@ -174,7 +174,7 @@ export default class SceneWallet extends React.Component {
<div css={STYLES_SUBTEXT}>Filecoin address</div>
</div>
- <div style={{ marginTop: 24 }}>
+ <div>
<div css={STYLES_FOCUS}>
{selected.name}{" "}
{networkViewer.settings_cold_default_a... | 2 |
diff --git a/app/scripts/PlotTypeChooser.jsx b/app/scripts/PlotTypeChooser.jsx @@ -79,13 +79,11 @@ export class PlotTypeChooser extends React.Component {
.sort((a,b) => { return a.type < b.type})
.map(x => {
let thumbnail = trackTypeToInfo[x.type].thumbnail;
- let blankLocation = "images/thumbnails/blank.png";
let imgT... | 2 |
diff --git a/src/components/Cell.js b/src/components/Cell.js import React from 'react';
-const Cell = ({ value, onMouseOver, onClick, className, style, onMouseOut }) => console.log('width', style) || (
+const Cell = ({ value, onMouseOver, onClick, className, style, onMouseOut }) => (
<td
style={style}
onClick={onClick}... | 2 |
diff --git a/src/resources/views/fields/upload.blade.php b/src/resources/views/fields/upload.blade.php {{-- Show the file name and a "Clear" button on EDIT form. --}}
@if (!empty($field['value']))
<div class="well well-sm">
- @php
- $prefix = !empty($field['prefix']) ? $field['prefix'] : '';
- @endphp
@if (isset($field... | 14 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -12,7 +12,7 @@ where X.Y.Z is the semver of most recent plotly.js release.
## [2.0.0] -- UNRELEASED
### Added
- - Removed usage of function constructors from `basic`, `cartesian`, `finance`, `geo`, and `mapbox`
+ - CSP safety: refactored to avoid usage of function constructor... | 3 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,17 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.25.1] -- 2017-03-28
+
+### Fixed
+- Fix `restyle` for `scattergl` traces with array `marker.size` (bug introduced
+ in `1.25.0`) [#15... | 3 |
diff --git a/package.json b/package.json "lodash-webpack-plugin": "^0.11.5",
"md5": "^2.2.1",
"mini-css-extract-plugin": "^0.4.5",
- "moment": "^2.24.0",
"natives": "^1.1.6",
"node-sass": "^4.11.0",
"polyfill-library": "^3.31.1",
| 2 |
diff --git a/app/config/collections.php b/app/config/collections.php @@ -1751,9 +1751,9 @@ $collections = [
'$id' => '_key_search',
'type' => Database::INDEX_FULLTEXT,
'attributes' => ['search'],
- 'lengths' => [],
- 'orders' => [],
- ],
+ 'lengths' => [2048],
+ 'orders' => [Database::ORDER_ASC],
+ ]
],
],
| 13 |
diff --git a/aleph/logic/gql.py b/aleph/logic/gql.py @@ -21,62 +21,62 @@ class GraphQuery(object):
def __init__(self, graph, authz=None):
self.graph = graph
self.authz = authz
- self.clauses = []
+ self.patterns = []
@property
- def filter(self):
+ def filters(self):
+ filters = []
if self.authz:
- return authz_query(s... | 10 |
diff --git a/package.json b/package.json "d3-interpolate": "1.1.2",
"jquery": "2.1.4",
"moment": "2.10.6",
- "perfect-scrollbar": "git://github.com/nobuti/perfect-scrollbar.git#autoupdate",
+ "perfect-scrollbar": "git://github.com/CartoDB/perfect-scrollbar.git#master",
"tinycolor2": "1.4.1",
"underscore": "1.8.3",
"uri... | 3 |
diff --git a/src/IoHandler.jsx b/src/IoHandler.jsx @@ -4,7 +4,7 @@ import ioManager from '../io-manager.js';
// import * as codeAi from '../ai/code/code-ai.js';
// import metaversefile from 'metaversefile';
-const types = ['keyup', 'click', 'mousedown', 'mouseup', 'mousemove', 'mouseenter', 'mouseleave', 'paste'];
+con... | 0 |
diff --git a/common/components/controllers/LogInController.jsx b/common/components/controllers/LogInController.jsx @@ -24,7 +24,7 @@ class LogInController extends React.Component<Props, State> {
constructor(props): void {
super(props);
const args: Dictionary<string> = url.arguments();
- const prevPage: string = args["p... | 12 |
diff --git a/sparta_main.go b/sparta_main.go @@ -34,20 +34,6 @@ func isRunningInAWS() bool {
return len(os.Getenv("AWS_LAMBDA_FUNCTION_NAME")) != 0
}
-// func applyLoggerHooks(serviceName string, workflowHooks *WorkflowHooks, logger *logrus.Logger) error {
-// // Anything to customize ?
-// if workflowHooks != nil && w... | 2 |
diff --git a/src/custom-resources.js b/src/custom-resources.js @@ -214,22 +214,29 @@ async function init(){
continue;
let regex = properties[property];
+ let pattern = false;
+ let nocase = false;
if(regex.startsWith('ipattern:')){
- regex = new RE2(mm.makeRe(regex.substring(9), { nocase: true }));
+ regex = regex.subs... | 7 |
diff --git a/web/app/components/Account/AccountLeftPanel.jsx b/web/app/components/Account/AccountLeftPanel.jsx @@ -107,7 +107,7 @@ class AccountLeftPanel extends React.Component {
</li>
</ul>
{this.state.showAdvanced ? (<ul className="account-left-menu">
- <li><Link to={`/account/${account_name}/assets/`} activeClassNa... | 10 |
diff --git a/bin/oref0-pump-loop.sh b/bin/oref0-pump-loop.sh @@ -140,13 +140,13 @@ function smb_enact_temp {
function smb_verify_enacted {
# Read the currently running temp and
- # verify rate matches and duration is no shorter than 5m less than smb-suggested.json
+ # verify rate matches (within 0.03U/hr) and duration ... | 11 |
diff --git a/src/containers/LeftPanel/TestMenu/EndpointTestMenu.jsx b/src/containers/LeftPanel/TestMenu/EndpointTestMenu.jsx @@ -16,6 +16,7 @@ const EndpointTestMenu = ({ dispatchToEndpointTestCase }) => {
};
const handleAddEndpoint = e => {
+ console.log('HIT HANDLEADDENDPOINT')
dispatchToEndpointTestCase(addEndpoint(... | 3 |
diff --git a/client/homebrew/editor/editor.jsx b/client/homebrew/editor/editor.jsx @@ -96,6 +96,7 @@ const Editor = createClass({
},
handleViewChange : function(newView){
+ this.props.setMoveArrows(newView === 'text');
this.setState({
view : newView
}, this.updateEditorSize); //TODO: not sure if updateeditorsize needed... | 5 |
diff --git a/contracts/governance/Staking/Staking.sol b/contracts/governance/Staking/Staking.sol @@ -374,10 +374,10 @@ contract Staking is IStaking, WeightedStaking, ApprovalReceiver {
bool isGovernance
) internal {
if (msg.sender.isContract()) {
- uint256 previousLock = until.add(TWO_WEEKS);
- uint96 stake = _getPrior... | 10 |
diff --git a/CHANGES.md b/CHANGES.md - Fixed error with `WallGeometry` when there were adjacent positions with very close values. [#8952](https://github.com/CesiumGS/cesium/pull/8952)
- Fixed artifact for skinned model when log depth is enabled. [#6447](https://github.com/CesiumGS/cesium/issues/6447)
- Fixed a bug wher... | 1 |
diff --git a/articles/tokens/index.html b/articles/tokens/index.html @@ -44,6 +44,9 @@ description: Learn about the numerous types of tokens referenced in Auth0 docume
<li>
<i class="icon icon-budicon-695"></i><a href="/scopes">Scopes</a>
</li>
+ <li>
+ <i class="icon icon-budicon-695"></i><a href="/why-use-access-toke... | 0 |
diff --git a/server/lib/__tests__/custom_watcher_handler.js b/server/lib/__tests__/custom_watcher_handler.js @@ -46,7 +46,7 @@ describe('CustomWatcherHandler', function () {
time: {
range: {
'@timestamp': {}
- },
+ }
}
}
}
@@ -65,26 +65,27 @@ describe('CustomWatcherHandler', function () {
getCluster: () => void 0
},
sa... | 3 |
diff --git a/docs/guides/01-introduction.md b/docs/guides/01-introduction.md @@ -56,7 +56,7 @@ The easiest way to include Airship is through our CDN, adding the tags in the he
<aside class="as-sidebar as-sidebar--right"></aside>
</div>
- <!-- Mapbox basemap -->
+ <!-- CARTO basemap -->
<script>
const map = new mapboxgl... | 10 |
diff --git a/packages/light-react/src/Settings/Settings.js b/packages/light-react/src/Settings/Settings.js @@ -15,7 +15,7 @@ import Health from '../Health';
import NewTokenItem from './NewTokenItem';
@light({
- chainName: chainName$
+ chainName: () => chainName$({ withoutLoading: true })
})
@inject('tokensStore')
@obse... | 1 |
diff --git a/NotAnAnswerFlagQueueHelper.user.js b/NotAnAnswerFlagQueueHelper.user.js // @description Inserts several sort options for the NAA / VLQ / Review LQ Disputed queues
// @homepage https://github.com/samliew/SO-mod-userscripts
// @author @samliew
-// @version 2.6
+// @version 2.6.1
//
// @include */admin/dashbo... | 2 |
diff --git a/bin/authentication-cli.php b/bin/authentication-cli.php @@ -48,6 +48,6 @@ class Authentication_CLI_Command extends WP_CLI_Command {
);
$authentication->disconnect();
- WP_CLI::success( sprintf( 'Site Kit revoke token from user ID: %d success', $user_id ) );
+ WP_CLI::success( sprintf( 'User with ID %d succ... | 7 |
diff --git a/articles/clients/index.md b/articles/clients/index.md @@ -71,6 +71,20 @@ While the Client ID is considered public information, the Client Secret **must b
- **Use Auth0 instead of the IdP to do Single Sign On**: If enabled, this setting prevents Auth0 from redirecting authenticated users with valid sessions... | 5 |
diff --git a/README.md b/README.md @@ -57,7 +57,7 @@ $ make test
[travis-url]: https://travis-ci.org/recurly/recurly-js/builds
[travis-image]: https://img.shields.io/travis/recurly/recurly-js/master.svg?style=flat-square
-[docs]: https://docs.recurly.com/js
+[docs]: https://developers.recurly.com/pages/recurly-js.html
... | 3 |
diff --git a/app.js b/app.js @@ -13,7 +13,7 @@ var express = require("express"),
LocalStrategy = require("passport-local"),
passportSocketIo = require("passport.socketio"),
cookieParser = require('cookie-parser'),
- flash = require("connect-flash")
+ flash = require("connect-flash");
var port = process.env.PORT || 80;
... | 1 |
diff --git a/app/models/user.rb b/app/models/user.rb @@ -501,6 +501,8 @@ class User < Sequel::Model
destroy_shared_with
assign_search_tweets_to_organization_owner
+
+ ClientApplication.where(user_id: id).each(&:destroy)
rescue StandardError => exception
error_happened = true
CartoDB::StdoutLogger.info "Error destroying... | 2 |
diff --git a/.github/workflows/test-ui.yml b/.github/workflows/test-ui.yml @@ -45,8 +45,6 @@ jobs:
- name: Run Tests
run: |
cd test
- sudo apt-get install libcap2-bin
- sudo setcap cap_net_bind_service=+ep `readlink -f \`which node\``
- sudo npm run test:ui
+ PORT=3000 HTTP_ONLY=true URL=http://localhost:3000 npm run t... | 0 |
diff --git a/_data/conferences.yml b/_data/conferences.yml year: 2022
id: siggraph22
link: https://s2022.siggraph.org/
- abstract_deadline: '2022-01-27 22:00:00'
- deadline: '2022-01-28 22:00:00'
+ abstract_deadline: '2022-01-26 22:00:00'
+ deadline: '2022-01-27 22:00:00'
timezone: UTC
date: August 8-11, 2022
place: Va... | 3 |
diff --git a/context/AuthContext.js b/context/AuthContext.js @@ -33,7 +33,6 @@ export const AuthProvider = ({ children }) => {
const fetchedToken = tokenData && tokenData.accessToken;
if (fetchedToken) {
setAccessToken(fetchedToken);
- sessionStorage.setItem("currentToken", fetchedToken);
setApolloToken(fetchedToken);
... | 2 |
diff --git a/src/Grid/Grid.d.ts b/src/Grid/Grid.d.ts @@ -3,7 +3,7 @@ import { Omit, StyledComponent, StyledComponentProps } from '..';
import { HiddenProps } from '../Hidden/Hidden';
import { Breakpoint } from '../styles/createBreakpoints';
-export type GridItemsAlignment = 'flex-start' | 'center' | 'flex-end' | 'stret... | 0 |
diff --git a/src/character/import.js b/src/character/import.js @@ -205,14 +205,23 @@ async function getCharacterData(characterId) {
.then((data) => {
// construct the expected { character: {...} } object
let ddb = data.ddb.character === undefined ? { character: data.ddb } : data.ddb;
+ try {
const character = parseJson... | 7 |
diff --git a/components/core/DataView.js b/components/core/DataView.js @@ -262,7 +262,7 @@ export default class DataView extends React.Component {
};
_handleDeleteFiles = async (e) => {
- const message = `Are you sure you want to delete these ${numChecked} files? They will be deleted from your slates as well`;
+ const ... | 1 |
diff --git a/apps/lcars/lcars.app.js b/apps/lcars/lcars.app.js @@ -20,7 +20,7 @@ let cOrange = "#FF9900";
let cPurple = "#FF00DC";
let cWhite = "#FFFFFF";
let cBlack = "#000000";
-let cGrey = "#9E9E9E";
+let cGrey = "#424242";
/*
* Global lcars variables
@@ -143,7 +143,7 @@ function printData(key, y, c){
} else if (key... | 7 |
diff --git a/devices.js b/devices.js @@ -232,7 +232,7 @@ const generic = {
switch: {
exposes: [exposes.switch()],
supports: 'on/off',
- fromZigbee: [fz.on_off],
+ fromZigbee: [fz.on_off, fz.ignore_basic_report],
toZigbee: [tz.on_off],
},
light_onoff_brightness: {
| 8 |
diff --git a/articles/auth0-hooks/extensibility-points/client-credentials-exchange.md b/articles/auth0-hooks/extensibility-points/client-credentials-exchange.md @@ -6,6 +6,10 @@ description: The client-credentials-exchange extensibility point for use with Au
The `client-credentials-exchange` extensibility point allows ... | 0 |
diff --git a/web/src/ColorInput.js b/web/src/ColorInput.js @@ -16,6 +16,10 @@ export default ({ className, style, colorKey, help }) => {
getActiveContrastFromBackground,
} = useContext(ThemeContext);
const debouncedLogEvent = useCallback(debounce(window.__ssa__log, 1000), []);
+ const debouncedSetActiveRawColor = useCa... | 7 |
diff --git a/src/data.js b/src/data.js @@ -27,7 +27,7 @@ function getTypeAndName(name) {
const matches = name.match( /\d{1,2}(\.\d{1,2})?x\d*(\s?mm)?R?/ );
return {
- type: matches[ 0 ],
+ type: matches[ 0 ].replace( /(\d)mm/g, '$1 mm'),
name: name.replace( `${matches[ 0 ]}`, '' ).trim(),
};
}
| 7 |
diff --git a/package.json b/package.json "start-image_viewer": "node devtools/image_viewer/server.js",
"start": "npm run start-test_dashboard",
"baseline": "node tasks/baseline.js",
+ "noci-baseline": "npm run cibuild && ./tasks/noci_test.sh image && git checkout dist",
"preversion": "check-node-version --node 12 --npm... | 0 |
diff --git a/src/struct/CommandHandler.js b/src/struct/CommandHandler.js @@ -478,59 +478,65 @@ class CommandHandler extends AkairoHandler {
* @returns {Promise<void>}
*/
_handleTriggers(message, edited) {
- const matchedCommands = this.modules.filter(c => (edited ? c.editable : true) && c.enabled && c.trigger(message))... | 7 |
diff --git a/src/v2/cookbook/index.md b/src/v2/cookbook/index.md @@ -38,7 +38,9 @@ Recipes should generally:
> * Explain the pros and cons of your strategy, including when it is and isn't appropriate
> * Mention alternative solutions, if relevant, but leave in-depth explorations to a separate recipe
-### Simple Example... | 4 |
diff --git a/test/api/parser.test.js b/test/api/parser.test.js @@ -5,7 +5,7 @@ var sinon = require('sinon')
var mock = require('../mock')
var Environment = require('../../dist/environment').default
var Parser = require('../../dist/parser').default
-var source = require('vinyl-source-stream');
+var source = require('vin... | 2 |
diff --git a/package.json b/package.json "version": "0.22.3",
"description": " React port of slick carousel",
"main": "./lib",
- "files": [
- "dist",
- "lib"
- ],
+ "files": ["dist", "lib"],
"scripts": {
"start": "gulp server",
"build": "gulp clean && gulp sass && gulp copy && webpack",
"test": "eslint src && jest",
"t... | 0 |
diff --git a/app-object.js b/app-object.js @@ -28,6 +28,7 @@ gl.enable(gl.SAMPLE_ALPHA_TO_COVERAGE);
renderer.xr.enabled = true;
const scene = new THREE.Scene();
+const orthographicScene = new THREE.Scene();
const avatarScene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(60, window.innerWidth / window... | 0 |
diff --git a/lib/plugins/input/elasticsearchHttp.js b/lib/plugins/input/elasticsearchHttp.js @@ -10,17 +10,18 @@ function InputElasticsearchHttp (config, eventEmitter) {
if (config.workers) {
this.config.workers = config.workers
} else {
- this.config.workers = 1
+ this.config.workers = 0
}
}
InputElasticsearchHttp.pro... | 12 |
diff --git a/docs/CICD.md b/docs/CICD.md @@ -42,3 +42,13 @@ The workflow accepts the following inputs:
The workflow sets kubeconfig from github secrets and tries to install the chart in the `cicd` cluster. If the chart is not ready yet, the workflow retries up to 20 times.
After the chart is installed, the [sanity test... | 0 |
diff --git a/client/home.html b/client/home.html }
}
- if (['CHARGING', 'DOCKING', 'PAUSED', 'SPOT_CLEANING', 'IDLE', 'RETURNING_HOME', 'GOING_TO_TARGET'].indexOf(res.state) != -1) {
+ if (['CHARGING', 'DOCKING', 'PAUSED', 'IDLE'].indexOf(res.state) != -1) {
stopButton.setAttribute("disabled", "disabled");
} else {
sto... | 11 |
diff --git a/lib/planner.js b/lib/planner.js @@ -181,9 +181,14 @@ class Planner {
if (error) reject(error);
else resolve(data);
});
- this.applications
- .get(task.app)
- .pool.next()
+ const app = this.applications.get(task.app);
+ if (!app) {
+ const data = JSON.stringify(task);
+ const error = new Error('No applicat... | 8 |
diff --git a/src/util/FeedFetcher.js b/src/util/FeedFetcher.js @@ -133,7 +133,7 @@ class FeedFetcher {
try {
res = await fetch(url, options)
} catch (err) {
- throw new RequestError(null, err.message)
+ throw new RequestError(null, err.message === 'The user aborted a request.' ? 'Connected timed out' : err.message)
} f... | 14 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.